diff options
author | Chris Larson <clarson@kergoth.com> | 2005-02-11 01:07:28 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2005-02-11 01:07:28 +0000 |
commit | 5dadbaf0cdcd910bab780161eb56aef547bd6a64 (patch) | |
tree | d05ef206800610f435583585e85a8c57dade4618 /classes/cross.bbclass | |
parent | c617dd9c4f2a2a09ad4a1d80f2a8ca6832fd90cf (diff) |
Path variable updates:
* add base_prefix, base_bindir, base_libdir, and base_sbindir, for paths
that are always rooted at / (for things like /sbin/ldconfig).
* Rearrange the path bits in bitbake.conf to be a bit more comprehensible.
* Override more path variables in cross.bbclass and native.bbclass, so that
they can safely be overridden by the user.
BKrev: 420c0550HAHmBzqBNAmgZogIut9Srg
Diffstat (limited to 'classes/cross.bbclass')
-rw-r--r-- | classes/cross.bbclass | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/classes/cross.bbclass b/classes/cross.bbclass index e69de29bb2..cb49ef63e6 100644 --- a/classes/cross.bbclass +++ b/classes/cross.bbclass @@ -0,0 +1,54 @@ +# Cross packages are built indirectly via dependency, +# no need for them to be a direct target of 'world' +EXCLUDE_FROM_WORLD = "1" + +PACKAGES = "" + +HOST_ARCH = "${BUILD_ARCH}" +HOST_VENDOR = "${BUILD_VENDOR}" +HOST_OS = "${BUILD_OS}" +HOST_PREFIX = "${BUILD_PREFIX}" +HOST_CC_ARCH = "${BUILD_CC_ARCH}" + +CPPFLAGS = "${BUILD_CPPFLAGS}" +CFLAGS = "${BUILD_CFLAGS}" +CXXFLAGS = "${BUILD_CFLAGS}" +LDFLAGS = "${BUILD_LDFLAGS}" + +# Overrides for paths + +# Path prefixes +base_prefix = "${exec_prefix}" +prefix = "${CROSS_DIR}" +exec_prefix = "${prefix}" + +# Base paths +base_bindir = "${base_prefix}/bin" +base_sbindir = "${base_prefix}/sbin" +base_libdir = "${base_prefix}/lib" + +# Architecture independent paths +datadir = "${prefix}/share" +sysconfdir = "${prefix}/etc" +sharedstatedir = "${prefix}/com" +localstatedir = "${prefix}/var" +infodir = "${prefix}/info" +mandir = "${prefix}/man" +docdir = "${prefix}/doc" +servicedir = "${prefix}/srv" + +# Architecture dependent paths +bindir = "${exec_prefix}/bin" +sbindir = "${exec_prefix}/sbin" +libexecdir = "${exec_prefix}/libexec" +libdir = "${exec_prefix}/lib" +includedir = "${exec_prefix}/include" +oldincludedir = "${exec_prefix}/include" + +do_stage () { + oe_runmake install +} + +do_install () { + : +} |