Files
MyLFS/phase4/bc.sh

15 lines
133 B
Bash

# Bc Phase 4
CC=gcc ./configure --prefix=/usr -G -O3
make
if $RUN_TESTS
then
set +e
make test
set -e
fi
make install