diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-11-07 22:32:11 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-11-07 22:32:11 +0000 |
commit | 4e1d500e7a55054078cde95c8d51e23e9a9cecb8 (patch) | |
tree | 4adcdb65fa0c9ebc65d685de29b9ed569a405447 | |
parent | 72fbd27ad6dc2aebfbb8c4a971c8e5c9e242ea46 (diff) |
use proper compiler and linker for shfs-modules
BKrev: 418ea26b8a7j7HkCLSDiOfU6WSTbSA
-rw-r--r-- | shfs/shfs-modules_0.35.oe | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shfs/shfs-modules_0.35.oe b/shfs/shfs-modules_0.35.oe index bcfb862639..fa50ac3b20 100644 --- a/shfs/shfs-modules_0.35.oe +++ b/shfs/shfs-modules_0.35.oe @@ -4,7 +4,7 @@ SECTION = "kernel/modules" PRIORITY = "optional" MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" LICENSE = "GPL" -PR = "r1" +PR = "r2" SRC_URI = "${SOURCEFORGE_MIRROR}/shfs/shfs-${PV}.tar.gz" S = "${WORKDIR}/shfs-${PV}/shfs/Linux-2.4" @@ -15,7 +15,8 @@ inherit module do_compile() { unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS - oe_runmake KERNEL_SOURCES=${KERNEL_SOURCE} KERNEL=${KERNEL_VERSION} LINKER=${LD} LDFLAGS=-r + oe_runmake KERNEL_SOURCES=${KERNEL_SOURCE} KERNEL=${KERNEL_VERSION} \ + CC="${KERNEL_CC}" LD="${KERNEL_LD}" LINKER="${KERNEL_LD}" LDFLAGS=-r } do_stage() { |