Changeset 426
- Timestamp:
- Oct 10, 2012, 7:48:45 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/contrib/plugins/plugins.mk
r414 r426 52 52 else \ 53 53 echo "Normal patch: $$patch"; \ 54 patch - p1 -d $(TOPDIR) <$(PLUGINS_DIR)/$$plugin/debwrt/$$patch; \54 patch -N -p1 -d $(TOPDIR) <$(PLUGINS_DIR)/$$plugin/debwrt/$$patch; \ 55 55 fi \ 56 56 done; \ … … 61 61 @for plugin in $(PLUGIN_LIST); do \ 62 62 echo "De-applying plugin '$$plugin' on DebWrt:"; \ 63 for patch in `find $(PLUGINS_DIR)/$$plugin/debwrt/ -maxdepth 1 -mindepth 1 -type f -printf '%f\n' | sort `; do \63 for patch in `find $(PLUGINS_DIR)/$$plugin/debwrt/ -maxdepth 1 -mindepth 1 -type f -printf '%f\n' | sort -r`; do \ 64 64 if ( echo "$$patch" | grep -q ".rpatch$$" ); then \ 65 65 echo "Reverse patch: $$patch"; \ 66 patch - p1 -d $(TOPDIR) <$(PLUGINS_DIR)/$$plugin/debwrt/$$patch; \66 patch -N -p1 -d $(TOPDIR) <$(PLUGINS_DIR)/$$plugin/debwrt/$$patch; \ 67 67 else \ 68 68 echo "Normal patch: $$patch"; \
Note: See TracChangeset
for help on using the changeset viewer.