diff options
author | Ross Burton <ross.burton@intel.com> | 2016-07-13 13:45:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:28:47 +0100 |
commit | 72becf96c9bcbcb9b21e5c88125d514afaa2850b (patch) | |
tree | 6251b770f5dd74fa5165b7b0baab7429017aef74 /meta | |
parent | ad6aaae4bf408dde112ffb4050a7b710984b779a (diff) | |
download | poky-72becf96c9bcbcb9b21e5c88125d514afaa2850b.tar.gz |
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.
(From OE-Core rev: 2676ee77bacde03e75c2ceccfdc4c28a684569e6)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
15 | # Path prefixes | 15 | # Path prefixes |
16 | export base_prefix = "" | 16 | export base_prefix = "" |
17 | export prefix = "/usr" | 17 | export prefix = "/usr" |
18 | export exec_prefix = "/usr" | 18 | export exec_prefix = "${prefix}" |
19 | 19 | ||
20 | # Base paths | 20 | # Base paths |
21 | export base_bindir = "${base_prefix}/bin" | 21 | export base_bindir = "${base_prefix}/bin" |