Mercurial > hg > control-images
comparison images/lfs-bootstrap/mnt/build/gettext-stub.sh @ 19:b151b87ddf35
The installed files should be world readable.
author | Rob Landley <rob@landley.net> |
---|---|
date | Sun, 06 Nov 2011 09:27:37 -0600 |
parents | bcd2e358d57f |
children |
comparison
equal
deleted
inserted
replaced
18:8b2a876d74a5 | 19:b151b87ddf35 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 # Stub to compile packages that refuse to build without gettext. | 3 # Stub to compile packages that refuse to build without gettext. |
4 | 4 |
5 gcc -shared -fpic -o /usr/lib/libintl.so libintl-stub.c && | 5 gcc -shared -fpic -o libintl.so libintl-stub.c && |
6 cp libintl-stub.h /usr/include/libintl.h && | 6 install -m 755 libintl.so /usr/lib && |
7 cp msgfmt /usr/bin | 7 install -m 644 libintl-stub.h /usr/include/libintl.h && |
8 install -m 755 msgfmt /usr/bin |