diff options
Diffstat (limited to 'chapter8/expect.sh')
-rw-r--r-- | chapter8/expect.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chapter8/expect.sh b/chapter8/expect.sh new file mode 100644 index 0000000..1b7ccdc --- /dev/null +++ b/chapter8/expect.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +./configure --prefix=/usr \ + --with-tcl=/usr/lib \ + --enable-shared \ + --mandir=/usr/share/man \ + --with-tclinclude=/usr/include + +make +make -j1 install +ln -svf expect"${VERSION}"/libexpect"${VERSION}".so /usr/lib |