diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2000-09-10 15:03:00 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2000-09-10 15:03:00 +0000 |
commit | 36df7f0db6958727a013fa857c264e605ed74adf (patch) | |
tree | 508731c6937b0086a89a2f6304789267ddd34324 /emulators/vmware3 | |
parent | 06a976962937314c73b34016ff845810dd1e6bbc (diff) | |
download | ports-36df7f0db6958727a013fa857c264e605ed74adf.tar.gz ports-36df7f0db6958727a013fa857c264e605ed74adf.zip |
Fix the configure script that caused a syntax error when no networking.
PR: ports/20816
Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
Notes
Notes:
svn path=/head/; revision=32493
Diffstat (limited to 'emulators/vmware3')
-rw-r--r-- | emulators/vmware3/scripts/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/vmware3/scripts/configure b/emulators/vmware3/scripts/configure index 7fb4e5ce926b..bb2150ac04a6 100644 --- a/emulators/vmware3/scripts/configure +++ b/emulators/vmware3/scripts/configure @@ -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 |