diff options
Diffstat (limited to 'chapter8/perl.sh')
-rw-r--r-- | chapter8/perl.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chapter8/perl.sh b/chapter8/perl.sh index 040d01f..0fb9e3f 100644 --- a/chapter8/perl.sh +++ b/chapter8/perl.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e MAJMIN="$(cut -d\. -f1,2 <<< "${VERSION}")" @@ -19,9 +18,9 @@ sh Configure -des \ -Dman3dir=/usr/share/man/man3 \ -Dpager="/usr/bin/less -isR" \ -Duseshrplib \ - -Dusethreads + -Dusethreads && -make +make && -make -j1 install +make -j1 install && unset BUILD_ZLIB BUILD_BZIP2 |