diff options
Diffstat (limited to 'chapter8/flex.sh')
-rw-r--r-- | chapter8/flex.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/chapter8/flex.sh b/chapter8/flex.sh index bf62717..849f8f7 100644 --- a/chapter8/flex.sh +++ b/chapter8/flex.sh @@ -1,11 +1,11 @@ -#!/bin/bash -set -e - -./configure --prefix=/usr \ - --docdir=/usr/share/doc/flex-"${VERSION}" \ - --disable-static && - -make && - -make -j1 install && -ln -sv flex /usr/bin/lex +#!/bin/bash
+set -e
+
+./configure --prefix=/usr \
+ --docdir=/usr/share/doc/flex-"${VERSION}" \
+ --disable-static &&
+
+make &&
+
+make -j1 install &&
+ln -sv flex /usr/bin/lex
|