From: Ross Burton Date: Wed, 13 Jul 2016 12:45:02 +0000 (+0100) Subject: bitbake.conf: use ${prefix} to define exec_prefix X-Git-Tag: uninative-1.3~305 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2676ee77bacde03e75c2ceccfdc4c28a684569e6;p=openembedded-core.git bitbake.conf: use ${prefix} to define exec_prefix This was simply changing prefix will relocate everything which is generally the intention, whilst still allowing the variables to be set independently. Signed-off-by: Ross Burton --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 613fc4cfdd..af3b1819be 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -15,7 +15,7 @@ BASELIB_powerpc64 = "lib64" # Path prefixes export base_prefix = "" export prefix = "/usr" -export exec_prefix = "/usr" +export exec_prefix = "${prefix}" # Base paths export base_bindir = "${base_prefix}/bin"