mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-26 06:41:03 +08:00
autogen.sh: fix autoreconf exit code log
This commit is contained in:
parent
6f46375440
commit
51bffc05f5
@ -43,7 +43,8 @@ if [ $? -ne 0 ]; then
|
||||
fi
|
||||
|
||||
autoreconf --install --force --verbose -I config
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "autogen.sh: error: autoreconf exited with status $?" 1>&2
|
||||
res=$?
|
||||
if [ "$res" -ne 0 ]; then
|
||||
echo "autogen.sh: error: autoreconf exited with status $res" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user