|
From: Heiko Z. <smi...@us...> - 2010-02-28 13:54:48
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10487/scripts Modified Files: ipset Log Message: corrected ipset install (Heiko + Gabriel Hojda) Index: ipset =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ipset,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ipset 6 Jan 2010 15:20:24 -0000 1.8 +++ ipset 28 Feb 2010 13:54:39 -0000 1.9 @@ -30,7 +30,7 @@ fi strip_debug # install it, so other programs can use it - make install || exit 1 + make install KERNEL_DIR=$KERNELDIR || exit 1 fi fi ;; @@ -40,8 +40,8 @@ if [ "$CONFIG_NF_BASE" = "y" ]; then rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 - make install DESTDIR=$TMPDIR || exit 1 - copy_docs $TMPDIR + make install KERNEL_DIR=$KERNELDIR INSTALL_MOD_PATH=$CDDIR DESTDIR=$TMPDIR || exit 1 + copy_docs $TMPDIR copy_files $TMPDIR/usr $CDDIR || exit 1 rm -rf $TMPDIR || exit 1 fi |