mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2025-03-13 22:59:20 +00:00
27 lines
276 B
Bash
27 lines
276 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd $LFS/sources
|
||
|
tar xf bison-3.8.2.tar.xz
|
||
|
cd bison-3.8.2
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--docdir=/usr/share/doc/bison-3.8.2
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
make -j5
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
make install
|
||
|
|
||
|
cd $LFS/sources
|
||
|
rm -rf bison-3.8.2
|
||
|
|