2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-01 23:05:29 +00:00

Fixed util/bindvar.sh error handling

This commit is contained in:
Francis Dupont
2016-03-18 14:39:24 +01:00
parent 34a09be027
commit 254fb9948f
2 changed files with 6 additions and 0 deletions

3
configure vendored
View File

@@ -8703,6 +8703,9 @@ fi
as_fn_error $? "*** util/bindvar.sh failed" "$LINENO" 5 as_fn_error $? "*** util/bindvar.sh failed" "$LINENO" 5
fi fi
) )
if test $? -ne 0; then
exit $?
fi
cat > config.report << END cat > config.report << END

View File

@@ -836,6 +836,9 @@ fi
AC_MSG_ERROR([*** util/bindvar.sh failed]) AC_MSG_ERROR([*** util/bindvar.sh failed])
fi fi
) )
if test $? -ne 0; then
exit $?
fi
cat > config.report << END cat > config.report << END