diff options
author | Chris Larson <chris_larson@mentor.com> | 2011-08-19 14:56:24 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-23 18:23:14 -0700 |
commit | a00600b853570b6090e68d20f22bb5ef5435e0ea (patch) | |
tree | 67f1bcee33ffa1042265742257cd042f669f8bc0 /meta | |
parent | 039b1a04db32bed23536a23983c3b6d91e1166c7 (diff) | |
download | openembedded-core-a00600b853570b6090e68d20f22bb5ef5435e0ea.tar.gz openembedded-core-a00600b853570b6090e68d20f22bb5ef5435e0ea.tar.bz2 openembedded-core-a00600b853570b6090e68d20f22bb5ef5435e0ea.zip |
rpm: be certain we don't prefix our binaries
In certain combinations of build/host/target, they can end up
inadvertently prefixed, breaking the assumptions in the recipe.
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.0.bb b/meta/recipes-devtools/rpm/rpm_5.4.0.bb index 0882df787f..b805f7d834 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.0.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.0.bb @@ -162,7 +162,8 @@ EXTRA_OECONF = "--verbose \ --enable-maintainer-mode \ --with-path-macros=${rpm_macros} \ --with-path-lib=${libdir}/rpm \ - --with-bugreport=http://bugzilla.yoctoproject.org" + --with-bugreport=http://bugzilla.yoctoproject.org \ + --program-prefix=" CFLAGS_append = " -DRPM_VENDOR_WINDRIVER -DRPM_VENDOR_POKY" |