diff options
Diffstat (limited to 'chapter8/man-db.sh')
-rw-r--r-- | chapter8/man-db.sh | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/chapter8/man-db.sh b/chapter8/man-db.sh index afa8cb0..4b544eb 100644 --- a/chapter8/man-db.sh +++ b/chapter8/man-db.sh @@ -1,17 +1,17 @@ -#!/bin/bash -set -e - -./configure --prefix=/usr \ - --docdir=/usr/share/doc/man-db-"${VERSION}" \ - --sysconfdir=/etc \ - --disable-setuid \ - --enable-cache-owner=bin \ - --with-browser=/usr/bin/lynx \ - --with-vgrind=/usr/bin/vgrind \ - --with-grap=/usr/bin/grap \ - --with-systemdtmpfilesdir= \ - --with-systemdsystemunitdir= && - -make && - -make -j1 install +#!/bin/bash
+set -e
+
+./configure --prefix=/usr \
+ --docdir=/usr/share/doc/man-db-"${VERSION}" \
+ --sysconfdir=/etc \
+ --disable-setuid \
+ --enable-cache-owner=bin \
+ --with-browser=/usr/bin/lynx \
+ --with-vgrind=/usr/bin/vgrind \
+ --with-grap=/usr/bin/grap \
+ --with-systemdtmpfilesdir= \
+ --with-systemdsystemunitdir= &&
+
+make &&
+
+make -j1 install
|