diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 14:22:55 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:36 +0000 |
| commit | 902b785e93725acc6eb76b176877e4e7de3bbf31 (patch) | |
| tree | 0b3524ab93ca62056d8895eeaca71480f29470c3 | |
| parent | 5306f72e7ae83c9dae505c6a0a3c5d54bf8b20ec (diff) | |
| download | poky-902b785e93725acc6eb76b176877e4e7de3bbf31.tar.gz | |
rpm: Fix case where ${B} != ${S}
We need to run autogen.sh in the correct directory (${S}).
(From OE-Core rev: f352f9f25695635bbaad09774f02e66684971fc0)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.9.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index 6286771efa..ba24111bf7 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.9.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.9.bb | |||
| @@ -360,7 +360,7 @@ do_configure() { | |||
| 360 | # Disable tests! | 360 | # Disable tests! |
| 361 | echo "all:" > ${S}/tests/Makefile.am | 361 | echo "all:" > ${S}/tests/Makefile.am |
| 362 | 362 | ||
| 363 | ${S}/autogen.sh | 363 | ( cd ${S}; ${S}/autogen.sh ) |
| 364 | 364 | ||
| 365 | # NASTY hack to make sure configure files the right pkg-config file... | 365 | # NASTY hack to make sure configure files the right pkg-config file... |
| 366 | sed -e 's/pkg-config --exists uuid/pkg-config --exists ossp-uuid/g' \ | 366 | sed -e 's/pkg-config --exists uuid/pkg-config --exists ossp-uuid/g' \ |
