summaryrefslogtreecommitdiff
path: root/package/openocd
diff options
context:
space:
mode:
authorArnout Vandecappelle <arnout@mind.be>2017-07-05 13:14:22 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-05 15:21:19 +0200
commit24e50620c9ce952c85c1de1e6b20f6bcdda8f39d (patch)
tree20e07f771bfc9dad6b016bca4d618d020c7173d5 /package/openocd
parent19ba17ee3ba946ac865849df89d7c2988ea5aca9 (diff)
Globally replace $(HOST_DIR)/usr/include with $(HOST_DIR)/include
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/include' | xargs sed -i 's%$(HOST_DIR)/usr/include%$(HOST_DIR)/include%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/openocd')
-rw-r--r--package/openocd/openocd.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/openocd/openocd.mk b/package/openocd/openocd.mk
index 63201ee8c7..96f667b73c 100644
--- a/package/openocd/openocd.mk
+++ b/package/openocd/openocd.mk
@@ -88,8 +88,8 @@ HOST_OPENOCD_CONF_OPTS = \
--enable-openjtag \
--enable-buspirate \
--enable-sysfsgpio \
- --oldincludedir=$(HOST_DIR)/usr/include \
- --includedir=$(HOST_DIR)/usr/include \
+ --oldincludedir=$(HOST_DIR)/include \
+ --includedir=$(HOST_DIR)/include \
--disable-doxygen-html \
--with-jim-shared=no \
--disable-shared \