diff options
Diffstat (limited to 'chapter8')
-rw-r--r-- | chapter8/isl.sh | 4 | ||||
-rw-r--r-- | chapter8/ncurses.sh | 4 | ||||
-rw-r--r-- | chapter8/readline.sh | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/chapter8/isl.sh b/chapter8/isl.sh index 2ff6dba..d6f6e3d 100644 --- a/chapter8/isl.sh +++ b/chapter8/isl.sh @@ -1,8 +1,8 @@ #!/bin/bash ./configure --prefix=/usr \ - --disable-static \ - --docdir=/usr/share/doc/isl-"${VERSION}" && + --disable-static \ + --docdir=/usr/share/doc/isl-"${VERSION}" && make && make html && diff --git a/chapter8/ncurses.sh b/chapter8/ncurses.sh index d42cf49..10b76d4 100644 --- a/chapter8/ncurses.sh +++ b/chapter8/ncurses.sh @@ -7,8 +7,8 @@ --without-normal \ --enable-pc-files \ --enable-widec \ - --with-termlib \ - --disable-tic-depends && + --with-termlib \ + --disable-tic-depends && make && make -j1 install && diff --git a/chapter8/readline.sh b/chapter8/readline.sh index 80c9709..97e4ee4 100644 --- a/chapter8/readline.sh +++ b/chapter8/readline.sh @@ -8,7 +8,7 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install && ./configure --prefix=/usr \ --disable-static \ --with-curses \ - --disable-bracketed-paste-default \ + --disable-bracketed-paste-default \ --docdir=/usr/share/doc/readline-"${VERSION}" make SHLIB_LIBS="-lncursesw" && |