diff options
author | andreas <andreas@FreeBSD.org> | 2001-01-13 23:03:43 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 2001-01-13 23:03:43 +0800 |
commit | 4116fc69cd6ca665d05e5b433f870f3462384c15 (patch) | |
tree | c4c18eda10390c7a7862ebac8c12c3868a4503cb /net/zebra-devel | |
parent | 460445c4c5a6953f6c568c1c47e692954095cc9d (diff) | |
download | freebsd-ports-gnome-4116fc69cd6ca665d05e5b433f870f3462384c15.tar.gz freebsd-ports-gnome-4116fc69cd6ca665d05e5b433f870f3462384c15.tar.zst freebsd-ports-gnome-4116fc69cd6ca665d05e5b433f870f3462384c15.zip |
- configure: fixed logic in if-clause, so that dialog is only called
if BATCH is not defined.
Portrevision doesn't need to be bumped, since exactly this enables/unbreaks
package building...
Diffstat (limited to 'net/zebra-devel')
-rw-r--r-- | net/zebra-devel/scripts/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/zebra-devel/scripts/configure b/net/zebra-devel/scripts/configure index 68629d4f44f0..e5bb2a6fed13 100644 --- a/net/zebra-devel/scripts/configure +++ b/net/zebra-devel/scripts/configure @@ -5,7 +5,7 @@ # configure - zebra compile time option configurator # by Andreas Klemm <andreas@FreeBSD.org> -if [ "$BATCH" != "yes" -o "$BATCH" != "YES" ]; then +if [ "$BATCH" != "yes" -a "$BATCH" != "YES" ]; then # # configure - zebra compile time options |