aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Sidrane <david_s5@nscdg.com>2014-12-25 17:54:02 -1000
committerDavid Sidrane <david_s5@nscdg.com>2015-04-07 07:49:05 -1000
commitbbd9f8ad317d0f33edf8c908aeed5d03ccff7a57 (patch)
tree6698680e479aa9043e36e4ce79e5e6eccb9a95d7 /Makefile
parent2a7ac6aab48855b4444b7f720e1f5bb8143e36fd (diff)
downloadpx4-firmware-bbd9f8ad317d0f33edf8c908aeed5d03ccff7a57.tar.gz
px4-firmware-bbd9f8ad317d0f33edf8c908aeed5d03ccff7a57.tar.bz2
px4-firmware-bbd9f8ad317d0f33edf8c908aeed5d03ccff7a57.zip
better nameing and direction
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)