diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 2001-01-13 15:03:43 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 2001-01-13 15:03:43 +0000 |
commit | 7d1c8282aa0c2114c926675fddabbcf6d3c24e1e (patch) | |
tree | 789ac881e8f4df1efb9344eeac0b42cc3222b47b /net/zebra-devel | |
parent | Set PORTVERSION to 20001109, since ISPELL_DENEU version bumped. (diff) |
- 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...
Notes
Notes:
svn path=/head/; revision=37164
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 |