diff options
Diffstat (limited to 'chapter8/gettext.sh')
-rw-r--r-- | chapter8/gettext.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chapter8/gettext.sh b/chapter8/gettext.sh index ff604b8..df758da 100644 --- a/chapter8/gettext.sh +++ b/chapter8/gettext.sh @@ -1,11 +1,10 @@ #!/bin/bash -set -e ./configure --prefix=/usr \ --disable-static \ - --docdir=/usr/share/doc/gettext-"${VERSION}" + --docdir=/usr/share/doc/gettext-"${VERSION}" && -make +make && -make -j1 install +make -j1 install && chmod -v 0755 /usr/lib/preloadable_libintl.so |