mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-08-10 03:12:53 +00:00
15 lines
321 B
Bash
15 lines
321 B
Bash
# File Phase 2
|
|
mkdir build
|
|
pushd build
|
|
../configure --disable-bzlib \
|
|
--disable-libseccomp \
|
|
--disable-xzlib \
|
|
--disable-zlib
|
|
make
|
|
popd
|
|
|
|
./configure --prefix=/usr --host=$LFS_TGT --build=$(./config.guess)
|
|
make FILE_COMPILE=$(pwd)/build/src/file
|
|
make DESTDIR=$LFS install
|
|
|