diff options
Diffstat (limited to 'chapter8/sed.sh')
-rw-r--r-- | chapter8/sed.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter8/sed.sh b/chapter8/sed.sh index e0226a9..6b2d3d7 100644 --- a/chapter8/sed.sh +++ b/chapter8/sed.sh @@ -1,12 +1,12 @@ #!/bin/bash set -e -./configure --prefix=/usr --bindir=/bin +./configure --prefix=/usr --bindir=/bin && -make -make html +make && +make html && -make -j1 install +make -j1 install && -install -d -m755 /usr/share/doc/sed-"${VERSION}" +install -d -m755 /usr/share/doc/sed-"${VERSION}" && install -m644 doc/sed.html /usr/share/doc/sed-"${VERSION}" |