/jemalloc-3.0.0/autogen.sh
# · Shell · 17 lines · 14 code · 2 blank · 1 comment · 3 complexity · d373fa3571f3f55345407e1e29b53b03 MD5 · raw 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