From: Serge L. <sma...@us...> - 2012-03-07 21:56:04
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv16331/scripts Modified Files: openvpn Log Message: - explicitly specify path for 'ip' and 'route' tools Index: openvpn =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/openvpn,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- openvpn 5 Dec 2011 09:11:38 -0000 1.19 +++ openvpn 7 Mar 2012 21:56:01 -0000 1.20 @@ -21,7 +21,8 @@ case $1 in build ) if [ "$CONFIG_OPENVPN" = "y" ]; then - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-password-save --enable-iproute2 --disable-selinux || exit 1 + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-password-save --enable-iproute2 --disable-selinux \ + --with-ifconfig-path=/sbin/ifconfig --with-iproute-path=/sbin/ip --with-route-path=/sbin/route || exit 1 ##--disable-lzo make $PMAKE || exit 1 make -C plugin/auth-pam $PMAKE || exit 1 |