diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2012-07-07 21:45:16 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2012-07-07 21:45:16 +0000 |
commit | fa7b9c4591689193fd6477a650de2d44c0184be7 (patch) | |
tree | c615273b45137e1bdbf6df5b6b3e85fd68ebdcb8 /usr.bin/libtool | |
parent | 0636fdea10e6cee703e5e65a997afb41329e3e7d (diff) |
calling help() is not an error, so just return 0.
Diffstat (limited to 'usr.bin/libtool')
-rwxr-xr-x | usr.bin/libtool/libtool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/libtool/libtool b/usr.bin/libtool/libtool index 5e17c21fb64..8ce68dfff6d 100755 --- a/usr.bin/libtool/libtool +++ b/usr.bin/libtool/libtool @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: libtool,v 1.20 2012/07/07 21:42:22 jasper Exp $ +# $OpenBSD: libtool,v 1.21 2012/07/07 21:45:15 jasper Exp $ # Copyright (c) 2007-2010 Steven Mestdagh <steven@openbsd.org> # Copyright (c) 2012 Marc Espie <espie@openbsd.org> @@ -350,7 +350,7 @@ Usage: $0 [options] --version - print version of libtool EOF ; - exit 1; + exit 0; } sub notyet |