From: Heiko Z. <smi...@us...> - 2014-07-20 20:09:41
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23066/scripts Modified Files: open-vm-tools Log Message: compile fix Index: open-vm-tools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/open-vm-tools,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- open-vm-tools 19 Jul 2014 19:06:49 -0000 1.19 +++ open-vm-tools 20 Jul 2014 20:09:38 -0000 1.20 @@ -18,11 +18,12 @@ build ) if [ "$CONFIG_OPEN_VM_TOOLS" = "y" ]; then mkdir -p /lib/modules/$KERNELVERSION/kernel || exit 1 - replace_str ./configure "-Wno-unused-but-set-variable" "" #replace_str ./configure "-Wall" "-Wall -Wno-deprecated -Wno-deprecated-declarations" autoreconf -i || exit 1 chmod +x configure || exit 1 - CFLAGS="-Wno-error=unused-variable -Wno-deprecated -Wno-deprecated-declarations -Wno-sizeof-pointer-memaccess" \ + replace_str ./configure "-Wno-unused-but-set-variable" "" + #-Wno-sizeof-pointer-memaccess + CFLAGS="-Wno-error=unused-variable -Wno-deprecated -Wno-deprecated-declarations" \ LDFLAGS=-liconv ./configure --prefix=/usr --sysconfdir=/etc --without-x \ --without-icu --with-kernel-release=${KERNELVERSION} --with-pic || exit 1 make all modules || exit 1 |