diff options
Diffstat (limited to 'chapter8/expect.sh')
-rw-r--r-- | chapter8/expect.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chapter8/expect.sh b/chapter8/expect.sh index 55d1137..8a2e24b 100644 --- a/chapter8/expect.sh +++ b/chapter8/expect.sh @@ -1,12 +1,11 @@ #!/bin/bash -set -e ./configure --prefix=/usr \ --with-tcl=/usr/lib \ --enable-shared \ --mandir=/usr/share/man \ - --with-tclinclude=/usr/include + --with-tclinclude=/usr/include && -make -make -j1 install +make && +make -j1 install && ln -svf expect"${VERSION}"/libexpect"${VERSION}".so /usr/lib |