mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-23 04:49:06 +00:00
21 lines
342 B
Bash
21 lines
342 B
Bash
# Expect Phase 4
|
|
./configure --prefix=/usr \
|
|
--with-tcl=/usr/lib \
|
|
--enable-shared \
|
|
--mandir=/usr/share/man \
|
|
--with-tclinclude=/usr/include
|
|
|
|
make
|
|
|
|
if $RUN_TESTS
|
|
then
|
|
set +e
|
|
make test
|
|
set -e
|
|
fi
|
|
|
|
make install
|
|
|
|
ln -sf expect5.45.4/libexpect5.45.4.so /usr/lib
|
|
|