diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 13:14:21 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 15:20:05 +0200 |
commit | 19ba17ee3ba946ac865849df89d7c2988ea5aca9 (patch) | |
tree | ab5ad66f2dff9a2f138c850ce7a3436d35bf95a3 /package/4th | |
parent | 1eb57df2b2eb965d58dc3d08a35238aa41af9e54 (diff) | |
download | buildroot-19ba17ee3ba946ac865849df89d7c2988ea5aca9.tar.gz buildroot-19ba17ee3ba946ac865849df89d7c2988ea5aca9.zip |
Globally replace $(HOST_DIR)/usr/lib with $(HOST_DIR)/lib
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/lib' | xargs sed -i 's%$(HOST_DIR)/usr/lib%$(HOST_DIR)/lib%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/4th')
-rw-r--r-- | package/4th/4th.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/4th/4th.mk b/package/4th/4th.mk index 9f8969a181..f272e02808 100644 --- a/package/4th/4th.mk +++ b/package/4th/4th.mk @@ -60,10 +60,10 @@ endef define HOST_4TH_INSTALL_CMDS mkdir -p $(HOST_DIR)/bin - mkdir -p $(HOST_DIR)/usr/lib + mkdir -p $(HOST_DIR)/lib $(HOST_MAKE_ENV) $(MAKE) -C $(@D)/sources mostlyinstall \ BINARIES=$(HOST_DIR)/bin \ - LIBRARIES=$(HOST_DIR)/usr/lib + LIBRARIES=$(HOST_DIR)/lib endef $(eval $(generic-package)) |