1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-23 04:49:06 +00:00
Files
MyLFS-big_bash_script/phase4/automake.sh
2023-02-18 23:22:36 -05:00

15 lines
170 B
Bash

# Automake Phase 4
./configure --prefix=/usr --docdir=/usr/share/doc/automake-1.16.5
make
if $RUN_TESTS
then
set +e
make -j4 check
set -e
fi
make install