aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1f273aa88..b72583e6e 100644
--- a/Makefile
+++ b/Makefile
@@ -193,7 +193,7 @@ nuttxpatches:
$(Q) -if [ ! -f $(NUTTX_PATCHED) ]; then \
for patch in $(NUTTX_PATCHES); \
do \
- $(PATCH) -p0 -N -R < $$patch >/dev/null; \
+ $(PATCH) -p0 -N < $$patch >/dev/null; \
done \
fi
$(Q) $(TOUCH) $(NUTTX_PATCHED)
@@ -203,7 +203,7 @@ cleannuttxpatches:
$(Q) -if [ -f $(NUTTX_PATCHED) ]; then \
for patch in $(NUTTX_PATCHES); \
do \
- $(PATCH) -p0 -N < $$patch >/dev/null; \
+ $(PATCH) -p0 -N -R < $$patch >/dev/null; \
done \
fi
$(Q) $(REMOVE) $(NUTTX_PATCHED)