Fix the configure script that caused a syntax error when no networking.

PR:		ports/20816
Submitted by:	Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
This commit is contained in:
Akinori MUSHA 2000-09-10 15:03:00 +00:00
parent 06a9769629
commit 36df7f0db6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32493
3 changed files with 3 additions and 3 deletions

View File

@ -102,5 +102,5 @@ exec > ${WRKDIR}/Makefile.inc.net
echo '#' `date`
echo VMNET_HOST_IP=$host_ip
echo VMNET_NETMASK=$netmask
[ $networking -ne 0 ] && echo VMNET_NETWORKING=1
echo VMNET_NETWORKING=$networking
)

View File

@ -102,7 +102,7 @@ exec > ${WRKDIR}/Makefile.inc.net
echo '#' `date`
echo VMNET_HOST_IP=$host_ip
echo VMNET_NETMASK=$netmask
[ $networking -ne 0 ] && echo VMNET_NETWORKING=1
echo VMNET_NETWORKING=$networking
)
exit 0

View File

@ -102,7 +102,7 @@ exec > ${WRKDIR}/Makefile.inc.net
echo '#' `date`
echo VMNET_HOST_IP=$host_ip
echo VMNET_NETMASK=$netmask
[ $networking -ne 0 ] && echo VMNET_NETWORKING=1
echo VMNET_NETWORKING=$networking
)
exit 0