diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-16 10:47:56 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-16 12:44:36 +0100 |
| commit | 1d8c40d5f2119b4c4ae8a9b2645ae572ea9a54ff (patch) | |
| tree | 98070a4c9ce27475218072571195ff30bdbfb84c /meta/recipes-devtools/python/python-native_2.7.2.bb | |
| parent | e7135f14f3ef37f93f5c28b319464f3d6dd9b8da (diff) | |
| download | openembedded-core-1d8c40d5f2119b4c4ae8a9b2645ae572ea9a54ff.tar.gz openembedded-core-1d8c40d5f2119b4c4ae8a9b2645ae572ea9a54ff.tar.bz2 openembedded-core-1d8c40d5f2119b4c4ae8a9b2645ae572ea9a54ff.zip | |
python: Fix re-execution problem due to patching configure and configure.in
There was a patch patching both configure and configure.in. Since the recipes
all autoreconf, this is pointless and means subsequent patch tasks fail.
The fix is to only patch configure.in.
[YOCTO #2194]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-native_2.7.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-native_2.7.2.bb b/meta/recipes-devtools/python/python-native_2.7.2.bb index b00e2fcc3e..175f31d94e 100644 --- a/meta/recipes-devtools/python/python-native_2.7.2.bb +++ b/meta/recipes-devtools/python/python-native_2.7.2.bb @@ -1,6 +1,6 @@ require python.inc DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native sqlite3-native" -PR = "${INC_PR}.3" +PR = "${INC_PR}.4" SRC_URI += "file://04-default-is-optimized.patch \ file://05-enable-ctypes-cross-build.patch \ |
