$NetBSD: patch-configure,v 1.5 2017/09/28 10:40:35 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")