summaryrefslogtreecommitdiff
path: root/emulators/vmware3/scripts
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2000-07-13 06:43:51 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2000-07-13 06:43:51 +0000
commita7ed515c795edd13b561045425a0960c2ecb98e0 (patch)
tree1b222501233d28f2eebc8d0b0dc72f723d17b719 /emulators/vmware3/scripts
parentTake over maintainership. (diff)
Update md5 due to their repack of the distfile as of a week ago.
- vmware-sniffer and vmware-wizard were changed. (details unknown) - vmmon/vmnet/vmppuser sources were unchanged, however, some of the binaries (for Linux) seems have recompiled. That would not affect us because we compile them from source. Fix configure script to return zero on exit.
Notes
Notes: svn path=/head/; revision=30551
Diffstat (limited to 'emulators/vmware3/scripts')
-rw-r--r--emulators/vmware3/scripts/configure4
1 files changed, 3 insertions, 1 deletions
diff --git a/emulators/vmware3/scripts/configure b/emulators/vmware3/scripts/configure
index 75ec1773b1bf..7fb4e5ce926b 100644
--- a/emulators/vmware3/scripts/configure
+++ b/emulators/vmware3/scripts/configure
@@ -93,7 +93,7 @@ if [ _$BATCH = _ ]; then
10 50
fi
else #BATCH
- [ -f ${WRKDIR}/Makefile.inc.net ] && exit
+ [ -f ${WRKDIR}/Makefile.inc.net ] && exit 0
fi #BATCH
(
@@ -104,3 +104,5 @@ echo VMNET_HOST_IP=$host_ip
echo VMNET_NETMASK=$netmask
[ $networking -ne 0 ] && echo VMNET_NETWORKING=1
)
+
+exit 0