# HG changeset patch # User Rob Landley # Date 1320593257 21600 # Node ID b151b87ddf35c903a6be3fdff3589d7aabda3a0f # Parent 8b2a876d74a556d97a3bb015774c49d9fea27e88 The installed files should be world readable. diff -r 8b2a876d74a5 -r b151b87ddf35 images/lfs-bootstrap/mnt/build/gettext-stub.sh --- a/images/lfs-bootstrap/mnt/build/gettext-stub.sh Wed Nov 02 00:47:41 2011 -0500 +++ b/images/lfs-bootstrap/mnt/build/gettext-stub.sh Sun Nov 06 09:27:37 2011 -0600 @@ -2,6 +2,7 @@ # Stub to compile packages that refuse to build without gettext. -gcc -shared -fpic -o /usr/lib/libintl.so libintl-stub.c && -cp libintl-stub.h /usr/include/libintl.h && -cp msgfmt /usr/bin +gcc -shared -fpic -o libintl.so libintl-stub.c && +install -m 755 libintl.so /usr/lib && +install -m 644 libintl-stub.h /usr/include/libintl.h && +install -m 755 msgfmt /usr/bin