1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-08-15 23:21:33 +00:00

finished rewrite, working on builing GRUB et al, and then the kernel

This commit is contained in:
Kyle Glaws
2022-03-31 20:22:45 -04:00
parent 59f094cc23
commit 07454f32a4
85 changed files with 217 additions and 1306 deletions

View File

@ -1,16 +1,4 @@
#!/usr/bin/env bash
# Grep Stage 6
# ~~~~~~~~~~~~
set -e
cd /sources
eval "$(grep GREP $PACKAGE_LIST)"
PKG_GREP=$(basename $PKG_GREP)
tar -xf $PKG_GREP
cd ${PKG_GREP%.tar*}
# Grep Phase 4
./configure --prefix=/usr
make
@ -18,12 +6,9 @@ make
if $RUN_TESTS
then
set +e
make check &> $TESTLOG_DIR/grep.log
make check
set -e
fi
make install
cd /sources
rm -rf ${PKG_GREP%.tar*}