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

22 lines
501 B
Plaintext

$NetBSD: patch-configure,v 1.4 2016/02/16 05:58:56 spz Exp $
Make sure the toplevel configure script exits on failure.
--- configure.orig 2014-09-28 09:39: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")