[pisa-src] r995 - trunk/openwrt/trunk

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 29 Sep 2009 13:34:40 +0200

Author: biurrun
Date: Tue Sep 29 13:34:40 2009
New Revision: 995

Log:
Ignore output from patch --dry-run, only the return value is relevant.

Modified:
   trunk/openwrt/trunk/configure_router.sh

Modified: trunk/openwrt/trunk/configure_router.sh
==============================================================================
--- trunk/openwrt/trunk/configure_router.sh     Tue Sep 29 13:33:45 2009        
(r994)
+++ trunk/openwrt/trunk/configure_router.sh     Tue Sep 29 13:34:40 2009        
(r995)
@@ -89,6 +89,6 @@
 cd "${OPENWRT_PATH}"
 
 for patch in ${PISA_OPENWRT_PATH}/patches/*.patch; do
-    patch --dry-run --batch --force --strip=1 --input=$patch &&
+    patch --dry-run --batch --force --strip=1 --input=$patch > /dev/null &&
         patch --batch --strip=1 --input=$patch
 done

Other related posts:

  • » [pisa-src] r995 - trunk/openwrt/trunk - Diego Biurrun