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