redis_study/deps/jemalloc/autogen.sh
2020-09-12 22:49:33 +08:00

18 lines
266 B
Bash
Executable File

#!/bin/sh
for i in autoconf; do
echo "$i"
$i
if [ $? -ne 0 ]; then
echo "Error $? in $i"
exit 1
fi
done
echo "./configure --enable-autogen $@"
./configure --enable-autogen $@
if [ $? -ne 0 ]; then
echo "Error $? in ./configure"
exit 1
fi