- 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...
This commit is contained in:
Andreas Klemm 2001-01-13 15:03:43 +00:00
parent 0b75618ec9
commit 7d1c8282aa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37164
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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