1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-26 15:46:59 +00:00

working on massive rewrite

This commit is contained in:
Kyle Glaws
2022-03-26 17:55:10 -04:00
parent a9ff53703c
commit 59f094cc23
165 changed files with 822 additions and 1620 deletions

29
phase4/automake.sh Normal file
View File

@ -0,0 +1,29 @@
#!/usr/bin/env bash
# Automake Stage 6
# ~~~~~~~~~~~~~~~~
set -e
cd /sources
eval "$(grep AUTOMAKE $PACKAGE_LIST)"
PKG_AUTOMAKE=$(basename $PKG_AUTOMAKE)
tar -xf $PKG_AUTOMAKE
cd ${PKG_AUTOMAKE%.tar*}
./configure --prefix=/usr --docdir=/usr/share/doc/automake-1.16.5
make
if $RUN_TESTS
then
set +e
make -j4 check &> TESTLOG_DIR/automake.log
set -e
fi
make install
cd /sources
rm -rf ${PKG_AUTOMAKE%.tar*}