diff options
author | Mike Westerhof <mwester@dls.net> | 2009-05-10 23:55:22 -0500 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2009-05-10 23:55:22 -0500 |
commit | 75d4826c3c0f7012ccee3a7116d7350f41539fa3 (patch) | |
tree | b007d8f2825b052afdf08f8dba37ae68979ada09 /recipes | |
parent | eaea0ee411da83f7c5349920c701a55a17384f8e (diff) | |
download | openembedded-75d4826c3c0f7012ccee3a7116d7350f41539fa3.tar.gz |
madwifi-ng: (SlugOS only) re-instate "unset LDFLAGS" in do_compile() in order
to make madwifi link successfully after some over-aggressive LDFLAGS changes.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/madwifi/madwifi-ng_r3878-20081204.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/recipes/madwifi/madwifi-ng_r3878-20081204.bb b/recipes/madwifi/madwifi-ng_r3878-20081204.bb index 3db8244158..f4bd6aae3c 100644 --- a/recipes/madwifi/madwifi-ng_r3878-20081204.bb +++ b/recipes/madwifi/madwifi-ng_r3878-20081204.bb @@ -14,7 +14,7 @@ require madwifi-ng_r.inc SRCNAME = "madwifi-trunk" # PR set after the include, to override what's set in the included file. -PR = "r0" +PR = "r1" # It's not clear that we even need the wackelf patches any longer; certainly # they are not required for ixp4xx builds. This needs testing on pxa270. @@ -23,3 +23,9 @@ WACKELF_SRC_URI_compulab-pxa270 = "" # This works for EABI as well as the original OABI IXP4xx. EXTRA_OEMAKE = "V=1 KERNELPATH=${STAGING_KERNEL_DIR} KERNELRELEASE=${KERNEL_VERSION} TOOLPREFIX=${TARGET_PREFIX}" + +# We really must clear out LDFLAGS to get this to link. +do_compile() { + unset LDFLAGS + oe_runmake all +}
\ No newline at end of file |