Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv13615/scripts
Modified Files:
Tag: rel-1-0-patches
net-snmp
Log Message:
disable parallel builds
Index: net-snmp
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/net-snmp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -d -r1.1 -r1.1.2.1
--- net-snmp 2 Oct 2003 23:57:17 -0000 1.1
+++ net-snmp 12 Oct 2003 22:46:46 -0000 1.1.2.1
@@ -18,7 +18,8 @@
build )
if [ "$CONFIG_NET_SNMP" = "y" ]; then
./configure --prefix=/usr --disable-debugging --sysconfdir=/etc --localstatedir=/var --with-defaults --enable-shared --enable-ipv6 --enable-ucd-compatibility --with-zlib || exit 1
- make $PMAKE all || exit 1
+ # disable parallel builds, they don't work
+ make all || exit 1
strip_debug
#mkdir -p $WORKDIR/LIBS/net-snmp || exit 1
#make install prefix=$WORKDIR/LIBS/net-snmp/usr exec_prefix=$WORKDIR/LIBS/net-snmp/usr sysconfdir=$WORKDIR/LIBS/net-snmp/etc persistentdir=$WORKDIR/LIBS/net-snmp/var/net-snmp || exit 1
|