/pidgin/main: a91f4d6cb5dc: configure.ac: do not use exit status...
Michael Fiedler
dev at michael-fiedler.net
Sat Dec 1 17:14:40 EST 2012
Changeset: a91f4d6cb5dc994215fb81647532ae42447b95c7
Author: Michael Fiedler <dev at michael-fiedler.net>
Date: 2012-12-01 17:14 -0500
Branch: release-2.x.y
URL: http://hg.pidgin.im/pidgin/main/rev/a91f4d6cb5dc
Description:
configure.ac: do not use exit status 0 in case of error
diffstat:
COPYRIGHT | 1 +
configure.ac | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diffs (32 lines):
diff --git a/COPYRIGHT b/COPYRIGHT
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -175,6 +175,7 @@ Jesse Farmer
Gavan Fantom (gavan)
Leonardo Fernandes
David Fiander
+Michael Fiedler
Ryan Flegel
Rob Flynn <gaim at robflynn.com>
Rob Foehl (rwf)
diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -1185,7 +1185,7 @@ for i in $STATIC_PRPLS ; do
simple) static_simple=yes ;;
yahoo) static_yahoo=yes ;;
zephyr) static_zephyr=yes ;;
- *) echo "Invalid static protocol $i!!" ; exit ;;
+ *) echo "Invalid static protocol $i!!" ; exit 1 ;;
esac
done
AM_CONDITIONAL(STATIC_BONJOUR, test "x$static_bonjour" = "xyes")
@@ -1243,7 +1243,7 @@ for i in $DYNAMIC_PRPLS ; do
simple) dynamic_simple=yes ;;
yahoo) dynamic_yahoo=yes ;;
zephyr) dynamic_zephyr=yes ;;
- *) echo "Invalid dynamic protocol $i!!" ; exit ;;
+ *) echo "Invalid dynamic protocol $i!!" ; exit 1 ;;
esac
done
More information about the Commits
mailing list