Fixed jemalloc script

This commit is contained in:
WolverinDEV 2018-08-25 16:48:42 +02:00
parent dadefb355c
commit e88f3af90d

View File

@ -4,7 +4,11 @@ cd jemalloc/
if ! [ -f configure ]; then
autoconf
if [ $? -ne 0 || ! -f configure ]; then
if [ $? -ne 0 ]; then
echo "Failed to create configure file"
exit 1
fi
if ! [ -f configure ]; then
echo "Failed to create configure file"
exit 1
fi