[pisa-src] r1875 - trunk/tools/subversion/pisa_runautobuild

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Fri, 27 Nov 2009 17:46:24 +0100

Author: biurrun
Date: Fri Nov 27 17:46:23 2009
New Revision: 1875

Log:
Invoke 'make clean' during OpenWrt build just before 'make install'.
This ensures that an updated Makefile is used.

Modified:
   trunk/tools/subversion/pisa_runautobuild

Modified: trunk/tools/subversion/pisa_runautobuild
==============================================================================
--- trunk/tools/subversion/pisa_runautobuild    Fri Nov 27 17:36:17 2009        
(r1874)
+++ trunk/tools/subversion/pisa_runautobuild    Fri Nov 27 17:46:23 2009        
(r1875)
@@ -64,13 +64,13 @@
 PISA_TARBALL=$(ls pisa*tar.gz)
 run_program cp $PISA_TARBALL $BUILD_DIR/openwrt/dl
 cd $BUILD_DIR/openwrt
-run_program make -j16 package/pisa-clean V=99
 run_program rm -rf package/pisa
 run_program cp -r $CHECKOUT_DIR/openwrt/package/pisa package/
 # Patch the PISA package OpenWrt Makefile.
 # We have no error handling here - we expect errors to be caught by Make.
 WRT_PISA_VERSION=$(echo $PISA_TARBALL | cut -d . -f 1-3 | cut -d - -f 2)
 sed -e "s/PKG_VERSION:=.*/PKG_VERSION:=$WRT_PISA_VERSION/" 
$CHECKOUT_DIR/openwrt/package/pisa/Makefile > package/pisa/Makefile
+run_program make -j16 package/pisa-clean V=99
 run_program make -j16 package/pisa-install V=99
 
 cleanup 0

Other related posts:

  • » [pisa-src] r1875 - trunk/tools/subversion/pisa_runautobuild - Diego Biurrun