diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-05-19 12:40:11 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-05-19 12:53:49 -0700 |
commit | dd80fc5482cf3556b2294646fbc835b2439fcf52 (patch) | |
tree | fe98be363256e8ea1fb200ceee4a39df1eb91448 /recipes/cherokee | |
parent | 16d2cc32574aecceff630adab0d9a36d4fa5e568 (diff) |
cherokee: use the bitbake BUILD_CC variable rather than the exported shell variable
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'recipes/cherokee')
-rw-r--r-- | recipes/cherokee/cherokee_0.4.29.bb | 2 | ||||
-rw-r--r-- | recipes/cherokee/cherokee_0.5.3.bb | 2 | ||||
-rw-r--r-- | recipes/cherokee/cherokee_0.5.5.bb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/recipes/cherokee/cherokee_0.4.29.bb b/recipes/cherokee/cherokee_0.4.29.bb index f1c3cfc718..cda191a7af 100644 --- a/recipes/cherokee/cherokee_0.4.29.bb +++ b/recipes/cherokee/cherokee_0.4.29.bb @@ -23,7 +23,7 @@ do_configure() { } do_install_prepend () { - $BUILD_CC -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c + ${BUILD_CC} ${BUILD_CFLAGS} -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c } SRC_URI[md5sum] = "854e6e61a69781746496012658d8ef98" diff --git a/recipes/cherokee/cherokee_0.5.3.bb b/recipes/cherokee/cherokee_0.5.3.bb index 30807ba963..ab8fb99c9f 100644 --- a/recipes/cherokee/cherokee_0.5.3.bb +++ b/recipes/cherokee/cherokee_0.5.3.bb @@ -14,7 +14,7 @@ do_configure() { do_install_prepend () { # It only needs this app during the install, so compile it natively - $BUILD_CC -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c + ${BUILD_CC} ${BUILD_CFLAGS} -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c } SRC_URI[md5sum] = "9e8dfc46f94ee150515be5d31bd40d16" diff --git a/recipes/cherokee/cherokee_0.5.5.bb b/recipes/cherokee/cherokee_0.5.5.bb index 98c6c885a8..18f2529ff3 100644 --- a/recipes/cherokee/cherokee_0.5.5.bb +++ b/recipes/cherokee/cherokee_0.5.5.bb @@ -3,7 +3,7 @@ SRC_URI_append = "file://configure.in.patch;patch=1 \ do_install_prepend () { # It only needs this app during the install, so compile it natively - $BUILD_CC -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c + ${BUILD_CC} ${BUILD_CFLAGS} -DHAVE_SYS_STAT_H -o cherokee_replace cherokee_replace.c } require cherokee.inc |