diff options
Diffstat (limited to 'chapter8/libtool.sh')
-rw-r--r-- | chapter8/libtool.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/chapter8/libtool.sh b/chapter8/libtool.sh index a654e29..65b633e 100644 --- a/chapter8/libtool.sh +++ b/chapter8/libtool.sh @@ -1,10 +1,10 @@ -#!/bin/bash -set -e - -./configure --prefix=/usr && - -make && - -make -j1 install && - -rm -fv /usr/lib/libltdl.a +#!/bin/bash
+set -e
+
+./configure --prefix=/usr &&
+
+make &&
+
+make -j1 install &&
+
+rm -fv /usr/lib/libltdl.a
|