Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv7440/scripts
Modified Files:
open-vm-tools
Log Message:
correct vmware init script to not throw rpc errors
correct build script to allow build of "stable" open-vm-tools
Index: open-vm-tools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/open-vm-tools,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- open-vm-tools 14 Dec 2011 14:28:49 -0000 1.14
+++ open-vm-tools 16 Dec 2011 15:40:38 -0000 1.15
@@ -27,7 +27,7 @@
install )
if [ "$CONFIG_OPEN_VM_TOOLS" = "y" ]; then
mkdir -p $TMPDIR || exit 1
- make install DESTDIR=$TMPDIR || exit 1
+ make install DESTDIR=$TMPDIR DEPMOD="depmod -a ${KERNELVERSION}" || exit 1
cp -dpvR $TMPDIR/etc/* $ETCDIR/etc/ || exit 1
rm -rf $TMPDIR/etc || exit 1
rm -rf $TMPDIR/sbin || exit 1
|