浏览代码

Have autogen.sh fail if autoreconf fails

If the autoreconf program does not succeed, autogen.sh
should not succeed either.

The definition of "succeed" being "exit with exit code 0".
Hans Ulrich Niedermann 2 年之前
父节点
当前提交
6ab18dddb3
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      autogen.sh

+ 2 - 0
autogen.sh

@@ -6,9 +6,11 @@ if autoreconf --install --symlink --force; then
 	echo "------------------------------------------------------"
 	echo
 else
+	s="$?"
 	echo
 	echo "--------------------------"
 	echo "Running autoreconf failed."
 	echo "--------------------------"
 	echo
+	exit "$s"
 fi