diff options
Diffstat (limited to 'chapter8/gettext.sh')
-rw-r--r-- | chapter8/gettext.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chapter8/gettext.sh b/chapter8/gettext.sh new file mode 100644 index 0000000..1ff6c97 --- /dev/null +++ b/chapter8/gettext.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +./configure --prefix=/usr \ + --disable-static \ + --docdir=/usr/share/doc/gettext-"${VERSION}" + +make + +make -j1 install +chmod -v 0755 /usr/lib/preloadable_libintl.so |