diff options
author | Martin Dietze <herbert@spamcop.net> | 2009-11-29 21:21:32 +0100 |
---|---|---|
committer | Martin Dietze <herbert@spamcop.net> | 2009-11-29 21:21:32 +0100 |
commit | f32389464a0a74358d5b8f92f7dfbbda05aa0c0a (patch) | |
tree | ce2ffe3fb89953e7416740f91d06a3ae911761f9 /recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb | |
parent | a6f587c3ac875f4d89cedef234e6c6762cbdfaaa (diff) | |
parent | 7c7550ac80575d9a32714fa9c7d91ee2d0ad23bd (diff) |
Merge branch 'org.openembedded.dev' of git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb')
-rw-r--r-- | recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb b/recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb index 42d30c90f8..f9a6b0e55d 100644 --- a/recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb +++ b/recipes/zaurus-utils/nandlogical-klibc-static_1.0.0.bb @@ -2,9 +2,6 @@ require nandlogical_${PV}.bb FILESPATHPKG =. "nandlogical:" -SRC_URI_append = " file://mtd-user.h \ - file://mtd-abi.h \ - " DEPENDS += "klibc" export CC = ${TARGET_PREFIX}klcc @@ -14,11 +11,6 @@ export CFLAGS = "" export CPPFLAGS = "" export LDFLAGS = "" -do_configure_prepend() { - sed -i 's:<mtd/mtd-user.h>:"mtd-user.h":g' '${S}/nandlogical.c' - sed -i 's:<mtd/mtd-abi.h>:"mtd-abi.h":g' '${S}/mtd-user.h' -} - do_compile() { - ${CC} nandlogical.c -o nandlogical ${CFLAGS} ${LDFLAGS} -static + ${CC} ${CFLAGS} ${LDFLAGS} -static -I${STAGING_INCDIR} nandlogical.c -o nandlogical } |