summaryrefslogtreecommitdiffstats
path: root/package/pseudo
diff options
context:
space:
mode:
authorArnout Vandecappelle <arnout@mind.be>2017-07-05 13:14:21 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-05 15:20:05 +0200
commit19ba17ee3ba946ac865849df89d7c2988ea5aca9 (patch)
treeab5ad66f2dff9a2f138c850ce7a3436d35bf95a3 /package/pseudo
parent1eb57df2b2eb965d58dc3d08a35238aa41af9e54 (diff)
downloadbuildroot-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/pseudo')
-rw-r--r--package/pseudo/pseudo.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/pseudo/pseudo.mk b/package/pseudo/pseudo.mk
index 7a48cec7da..d78fc7aa8a 100644
--- a/package/pseudo/pseudo.mk
+++ b/package/pseudo/pseudo.mk
@@ -21,9 +21,9 @@ HOST_PSEUDO_DEPENDENCIES = host-attr host-sqlite
# a warning at configure time.
HOST_PSEUDO_CONF_OPTS = \
--cflags="$(HOSTCFLAGS)" \
- --with-rpath=$(HOST_DIR)/usr/lib \
+ --with-rpath=$(HOST_DIR)/lib \
--bits=$(if $(filter %64,$(HOSTARCH)),64,32) \
- --libdir=$(HOST_DIR)/usr/lib \
+ --libdir=$(HOST_DIR)/lib \
--with-sqlite=$(HOST_DIR)/usr
$(eval $(host-autotools-package))
OpenPOWER on IntegriCloud