mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
- 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:
parent
0b75618ec9
commit
7d1c8282aa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37164
2
net/zebra-devel/scripts/configure
vendored
2
net/zebra-devel/scripts/configure
vendored
@ -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
|
||||
|
2
net/zebra-pj/scripts/configure
vendored
2
net/zebra-pj/scripts/configure
vendored
@ -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
|
||||
|
2
net/zebra/scripts/configure
vendored
2
net/zebra/scripts/configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user