blob: 2d9da5b6cae112d884853540fc699d5f6c9cdc6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
mkdir build
cd build || exit 1
../configure --prefix="${LFS}"/tools \
--with-sysroot="${LFS}" \
--target="${LFS_TGT}" \
--disable-nls \
--disable-werror &&
make &&
make -j1 install
|