diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-07 21:58:21 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-07 21:58:21 +0100 |
commit | 6118da2a7f91979d14fda968805a8c69f0de42e4 (patch) | |
tree | 986bf80d910334fc61e9cc41c881b4b76d6c089c /meta/packages | |
parent | 2160dddcc14d9378aff5d48ee72e3dc39b4ab8c7 (diff) | |
download | openembedded-core-6118da2a7f91979d14fda968805a8c69f0de42e4.tar.gz openembedded-core-6118da2a7f91979d14fda968805a8c69f0de42e4.tar.bz2 openembedded-core-6118da2a7f91979d14fda968805a8c69f0de42e4.zip |
syslinux: Fix native install to use the correct paths
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/syslinux/syslinux_3.36.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/packages/syslinux/syslinux_3.36.bb b/meta/packages/syslinux/syslinux_3.36.bb index 5073ac358a..9cd24e6bd9 100644 --- a/meta/packages/syslinux/syslinux_3.36.bb +++ b/meta/packages/syslinux/syslinux_3.36.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A multi-purpose linux bootloader" HOMEPAGE = "http://syslinux.zytor.com/" LICENSE = "GPL" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2" -PR = "r3" +PR = "r4" # If you really want to run syslinux, you need mtools. We just want the # ldlinux.* stuff for now, so skip mtools-native @@ -14,6 +14,11 @@ do_configure() { COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)' +export BINDIR = "${bindir}" +export SBINDIR = "${sbindir}" +export LIBDIR = "${libdir}" +export INCDIR = "${includedir}" + do_compile_virtclass-native () { oe_runmake installer } |