summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2008-10-25 06:26:49 -0600
committerEric Blake <ebb9@byu.net>2008-10-25 06:26:49 -0600
commit489b6dac8c6c037499908e17171b2fcc75aa7512 (patch)
tree4f355106bfb35d98b3c6704e8cdf7a1be88331b9 /bin
parent8425d6363bf57cfef26496576e9ba5f5dc51b67b (diff)
downloadautoconf-489b6dac8c6c037499908e17171b2fcc75aa7512.tar.gz
Use AS_EXIT in autoconf.as.
* bin/autoconf.as: Consistently use AS_EXIT. Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'bin')
-rw-r--r--bin/autoconf.as8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/autoconf.as b/bin/autoconf.as
index 6eab32a9..c678e55a 100644
--- a/bin/autoconf.as
+++ b/bin/autoconf.as
@@ -81,7 +81,7 @@ Try \`$as_me --help' for more information."
exit_missing_arg='
AS_ECHO(["$as_me: option \`$[1]'\'' requires an argument"]) >&2
AS_ECHO(["$help"]) >&2
- exit 1
+ AS_EXIT([1])
' # restore font-lock: "
# Variables.
@@ -156,7 +156,7 @@ while test $# -gt 0 ; do
exec >&2
AS_ECHO(["$as_me: invalid option $[1]"])
AS_ECHO(["$help"])
- exit 1 ;;
+ AS_EXIT([1]) ;;
* )
break ;;
esac
@@ -175,7 +175,7 @@ case $# in
infile=configure.in
else
AS_ECHO(["$as_me: no input file"]) >&2
- exit 1
+ AS_EXIT([1])
fi
test -z "$traces" && test -z "$outfile" && outfile=configure;;
1)
@@ -183,7 +183,7 @@ case $# in
*) exec >&2
AS_ECHO(["$as_me: invalid number of arguments."])
AS_ECHO(["$help"])
- (exit 1); exit 1 ;;
+ AS_EXIT([1]) ;;
esac
# Unless specified, the output is stdout.