From: Heiko Z. <smi...@us...> - 2015-02-12 02:19:13
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20420/scripts Modified Files: libusb Log Message: fixed more dependencies Index: libusb =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libusb,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- libusb 5 Dec 2011 09:11:38 -0000 1.8 +++ libusb 12 Feb 2015 02:19:09 -0000 1.9 @@ -15,7 +15,18 @@ source $MYDIR/settings case $1 in + prepare ) + ./configure --prefix=/usr --disable-udev || exit 1 + make $PMAKE all || exit 1 + + + # we have to install this immediately, because this is a library and could be needed by other sources + make install || exit 1 + ;; + build ) + make clean + ./configure --prefix=/usr || exit 1 make $PMAKE all || exit 1 |