diff options
author | knu <knu@FreeBSD.org> | 2000-07-13 06:43:51 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-07-13 06:43:51 +0000 |
commit | db4ac3e3ffd11f006d274b3675c7b532b8339876 (patch) | |
tree | 7b3829408ce37ca37258b9b36177f77456f0e902 /emulators/vmware3/scripts | |
parent | 491558b0ee6e53ff3aaf3e56331c187f79d3bff1 (diff) | |
download | FreeBSD-ports-db4ac3e3ffd11f006d274b3675c7b532b8339876.zip FreeBSD-ports-db4ac3e3ffd11f006d274b3675c7b532b8339876.tar.gz |
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.
Diffstat (limited to 'emulators/vmware3/scripts')
-rw-r--r-- | emulators/vmware3/scripts/configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emulators/vmware3/scripts/configure b/emulators/vmware3/scripts/configure index 75ec177..7fb4e5c 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 |