diff options
Diffstat (limited to 'chapter7')
-rw-r--r-- | chapter7/bison.sh | 1 | ||||
-rw-r--r-- | chapter7/gettext.sh | 7 | ||||
-rw-r--r-- | chapter7/libstdc++.sh | 3 | ||||
-rw-r--r-- | chapter7/perl.sh | 1 | ||||
-rw-r--r-- | chapter7/python.sh | 1 | ||||
-rw-r--r-- | chapter7/texinfo.sh | 1 | ||||
-rw-r--r-- | chapter7/util-linux.sh | 1 |
7 files changed, 4 insertions, 11 deletions
diff --git a/chapter7/bison.sh b/chapter7/bison.sh index 9de734e..2385d22 100644 --- a/chapter7/bison.sh +++ b/chapter7/bison.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --prefix=/usr --docdir=/usr/share/doc/bison-"${VERSION}" && make && diff --git a/chapter7/gettext.sh b/chapter7/gettext.sh index b1dca1c..696cf25 100644 --- a/chapter7/gettext.sh +++ b/chapter7/gettext.sh @@ -1,8 +1,7 @@ #!/bin/bash -set -e -./configure --disable-shared +./configure --disable-shared && make && -cp -v gettext-tools/src/msgfmt /usr/bin -cp -v gettext-tools/src/msgmerge /usr/bin +cp -v gettext-tools/src/msgfmt /usr/bin && +cp -v gettext-tools/src/msgmerge /usr/bin && cp -v gettext-tools/src/xgettext /usr/bin diff --git a/chapter7/libstdc++.sh b/chapter7/libstdc++.sh index 87c89b7..de3a6b4 100644 --- a/chapter7/libstdc++.sh +++ b/chapter7/libstdc++.sh @@ -1,7 +1,6 @@ #!/bin/bash -set -e -ln -s gthr-posix.h libgcc/gthr-default.h +ln -s gthr-posix.h libgcc/gthr-default.h && mkdir build cd build || exit 1 ../libstdc++-v3/configure \ diff --git a/chapter7/perl.sh b/chapter7/perl.sh index 627e3e5..970e17c 100644 --- a/chapter7/perl.sh +++ b/chapter7/perl.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e MAJMIN="$(cut -d\. -f1,2 <<< "${VERSION}")" diff --git a/chapter7/python.sh b/chapter7/python.sh index 428beaa..daf1677 100644 --- a/chapter7/python.sh +++ b/chapter7/python.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --prefix=/usr \ --enable-shared \ diff --git a/chapter7/texinfo.sh b/chapter7/texinfo.sh index b3bba9e..1935156 100644 --- a/chapter7/texinfo.sh +++ b/chapter7/texinfo.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --prefix=/usr && make && diff --git a/chapter7/util-linux.sh b/chapter7/util-linux.sh index e0241fa..7a00c8c 100644 --- a/chapter7/util-linux.sh +++ b/chapter7/util-linux.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e mkdir -p /var/lib/hwclock && ./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \ |