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

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

Author: biurrun
Date: Tue Sep 29 13:40:28 2009
New Revision: 996

Log:
Pass '--forward' option instead of '--force' to patch.
The patches we apply are not reversed and --force has weird sideeffects.

Modified:
   trunk/openwrt/trunk/configure_router.sh

Modified: trunk/openwrt/trunk/configure_router.sh
==============================================================================
--- trunk/openwrt/trunk/configure_router.sh     Tue Sep 29 13:34:40 2009        
(r995)
+++ trunk/openwrt/trunk/configure_router.sh     Tue Sep 29 13:40:28 2009        
(r996)
@@ -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 > /dev/null &&
+    patch --dry-run --batch --forward --strip=1 --input=$patch > /dev/null &&
         patch --batch --strip=1 --input=$patch
 done

Other related posts:

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