Make sys/debian.sh more verbose

This commit is contained in:
pancake 2021-02-24 23:07:36 +01:00
parent c95c206ab1
commit a0e09ae808

View File

@ -24,11 +24,12 @@ if [ -z "$CFLAGS" ]; then
export CFLAGS="${CFLAGS} -Wno-stringop-truncation"
fi
# build
./configure --prefix=/usr > /dev/null
export
./configure --prefix=/usr
[ $? != 0 ] && exit 1
make -j4 > /dev/null
[ $? != 0 ] && exit 1
make install DESTDIR="${PWD}/${PKGDIR}" > /dev/null
make install DESTDIR="${PWD}/${PKGDIR}"
[ $? != 0 ] && exit 1
# dev-split