mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
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:
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
2
emulators/vmware/scripts/configure
vendored
2
emulators/vmware/scripts/configure
vendored
|
@ -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
|
||||
)
|
||||
|
|
2
emulators/vmware2/scripts/configure
vendored
2
emulators/vmware2/scripts/configure
vendored
|
@ -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
|
||||
|
|
2
emulators/vmware3/scripts/configure
vendored
2
emulators/vmware3/scripts/configure
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue