Merge pull request #4082 from zoedberg/fix_autogen

autogen.sh: fix autoreconf exit code log
This commit is contained in:
Luca Boccassi 2020-11-10 19:19:53 +00:00 committed by GitHub
commit 1d6b232920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 2 deletions

15
RELICENSE/zoedberg.md Normal file
View File

@ -0,0 +1,15 @@
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
This is a statement by Zoe Faltibà
that grants permission to relicense its copyrights in the libzmq C++
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
Open Source Initiative approved license chosen by the current ZeroMQ
BDFL (Benevolent Dictator for Life).
A portion of the commits made by the Github handle "zoedberg", with
commit author "Zoe Faltibà zoefaltiba@gmail.com", are copyright of Zoe Faltibà.
This document hereby grants the libzmq project team to relicense libzmq,
including all past, present and future contributions of the author listed above.
Zoe Faltibà
2020/11/10

View File

@ -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