Files
pkgsrc-ng/net/xymonclient/patches/patch-configure
2016-11-18 22:39:22 +01:00

21 lines
500 B
Plaintext

$NetBSD: patch-configure,v 1.2 2016/02/16 05:58:57 spz Exp $
Make sure the toplevel configure script exits on failure.
--- configure.orig 2011-03-08 17:20:28.000000000 +0000
+++ configure
@@ -14,11 +14,11 @@ chmod 755 $BASEDIR/configure* $BASEDIR/b
case "$TARGET" in
"--client")
- exec $BASEDIR/configure.client $*
+ exec $BASEDIR/configure.client "$@" || exit 1
;;
"--server"|"")
- exec $BASEDIR/configure.server $*
+ exec $BASEDIR/configure.server "$@" || exit 1
;;
"--help")