shlib-build-error-reporting-20060804

Use set -e so that errors will be reported to make.
This commit is contained in:
Russ Allbery 2006-08-04 18:55:13 +00:00
parent 2cb59dc2b7
commit 9e01ca69f3
2 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,8 @@
# expect a -- option indicating the end of our arguments and the rest of the # expect a -- option indicating the end of our arguments and the rest of the
# arguments are passed along verbatim to the linker. # arguments are passed along verbatim to the linker.
set -e
linker="@SHLIB_LINKER@" linker="@SHLIB_LINKER@"
suffix="@SHLIB_SUFFIX@" suffix="@SHLIB_SUFFIX@"
sysname="@AFS_SYSNAME@" sysname="@AFS_SYSNAME@"

View File

@ -9,6 +9,8 @@
# We take the following regular arguments: -d <destination>, -l <library>, -M # We take the following regular arguments: -d <destination>, -l <library>, -M
# <major>, -m <minor>. # <major>, -m <minor>.
set -e
INSTALL="@INSTALL@" INSTALL="@INSTALL@"
install="@INSTALL_DATA@" install="@INSTALL_DATA@"
suffix="@SHLIB_SUFFIX@" suffix="@SHLIB_SUFFIX@"