diff options
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 975e24c071..e768df5f7f 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -1,6 +1,13 @@ | |||
1 | ################################################################## | 1 | ################################################################## |
2 | # Standard target filesystem paths. | 2 | # Standard target filesystem paths. |
3 | ################################################################## | 3 | ################################################################## |
4 | # | ||
5 | # If changing these values, beware that native/cross/nativesdk bbclass | ||
6 | # files may also need changes to keep in sync. | ||
7 | # | ||
8 | |||
9 | # Used by multilib code to change the library paths | ||
10 | baselib = "lib" | ||
4 | 11 | ||
5 | # Path prefixes | 12 | # Path prefixes |
6 | export base_prefix = "" | 13 | export base_prefix = "" |
@@ -10,7 +17,7 @@ export exec_prefix = "/usr" | |||
10 | # Base paths | 17 | # Base paths |
11 | export base_bindir = "${base_prefix}/bin" | 18 | export base_bindir = "${base_prefix}/bin" |
12 | export base_sbindir = "${base_prefix}/sbin" | 19 | export base_sbindir = "${base_prefix}/sbin" |
13 | export base_libdir = "${base_prefix}/lib" | 20 | export base_libdir = "${base_prefix}/${baselib}" |
14 | 21 | ||
15 | # Architecture independent paths | 22 | # Architecture independent paths |
16 | export datadir = "${prefix}/share" | 23 | export datadir = "${prefix}/share" |
@@ -26,13 +33,11 @@ export docdir = "${datadir}/doc" | |||
26 | export bindir = "${exec_prefix}/bin" | 33 | export bindir = "${exec_prefix}/bin" |
27 | export sbindir = "${exec_prefix}/sbin" | 34 | export sbindir = "${exec_prefix}/sbin" |
28 | export libexecdir = "${exec_prefix}/libexec" | 35 | export libexecdir = "${exec_prefix}/libexec" |
29 | export libdir = "${exec_prefix}/lib" | 36 | export libdir = "${exec_prefix}/${baselib}" |
30 | export includedir = "${exec_prefix}/include" | 37 | export includedir = "${exec_prefix}/include" |
31 | export oldincludedir = "${exec_prefix}/include" | 38 | export oldincludedir = "${exec_prefix}/include" |
32 | 39 | ||
33 | # | 40 | # Linkage between native/cross/nativesdk layouts |
34 | # These must match the various bbclass layout definitions | ||
35 | # | ||
36 | base_bindir_native = "/bin" | 41 | base_bindir_native = "/bin" |
37 | base_sbindir_native = "/sbin" | 42 | base_sbindir_native = "/sbin" |
38 | sysconfdir_native = "/etc" | 43 | sysconfdir_native = "/etc" |