diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 13:14:22 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 15:21:19 +0200 |
commit | 24e50620c9ce952c85c1de1e6b20f6bcdda8f39d (patch) | |
tree | 20e07f771bfc9dad6b016bca4d618d020c7173d5 /package/linux-syscall-support | |
parent | 19ba17ee3ba946ac865849df89d7c2988ea5aca9 (diff) | |
download | buildroot-24e50620c9ce952c85c1de1e6b20f6bcdda8f39d.tar.gz buildroot-24e50620c9ce952c85c1de1e6b20f6bcdda8f39d.zip |
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/linux-syscall-support')
-rw-r--r-- | package/linux-syscall-support/linux-syscall-support.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/linux-syscall-support/linux-syscall-support.mk b/package/linux-syscall-support/linux-syscall-support.mk index c02610d80d..b8145de496 100644 --- a/package/linux-syscall-support/linux-syscall-support.mk +++ b/package/linux-syscall-support/linux-syscall-support.mk @@ -22,7 +22,7 @@ endef define HOST_LINUX_SYSCALL_SUPPORT_INSTALL_CMDS $(INSTALL) -D -m 0644 $(@D)/linux_syscall_support.h \ - $(HOST_DIR)/usr/include/linux_syscall_support.h + $(HOST_DIR)/include/linux_syscall_support.h endef $(eval $(host-generic-package)) |