diff options
| author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-12-10 00:18:17 +0100 |
|---|---|---|
| committer | Koen Kooi <koen@openembedded.org> | 2008-12-10 08:03:03 +0100 |
| commit | bea64f3bd904ddc02694e07551cb631ac55f4e23 (patch) | |
| tree | ed6d572303fdaee14919a5a55989f401c34c7a53 /packages/python/python-native-2.6.1/00-fix-bindir-libdir-for-cross.patch | |
| parent | b4594d9def6deddccedc729ae2511b5766b0028a (diff) | |
Python 2.6: here we are. WIP :)
Diffstat (limited to 'packages/python/python-native-2.6.1/00-fix-bindir-libdir-for-cross.patch')
| -rw-r--r-- | packages/python/python-native-2.6.1/00-fix-bindir-libdir-for-cross.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/python/python-native-2.6.1/00-fix-bindir-libdir-for-cross.patch b/packages/python/python-native-2.6.1/00-fix-bindir-libdir-for-cross.patch new file mode 100644 index 0000000000..2559e3a0e4 --- /dev/null +++ b/packages/python/python-native-2.6.1/00-fix-bindir-libdir-for-cross.patch @@ -0,0 +1,20 @@ +# $(exec_prefix) points to the wrong directory, when installing +# a cross-build. @bindir@ and @libdir@ works better and doesn't +# affect the native build. +# Signed-Off: Michael 'Mickey' Lauer <mickey@vanille-media.de> + +Index: Python-2.6.1/Makefile.pre.in +=================================================================== +--- Python-2.6.1.orig/Makefile.pre.in ++++ Python-2.6.1/Makefile.pre.in +@@ -86,8 +86,8 @@ exec_prefix= @exec_prefix@ + datarootdir= @datarootdir@ + + # Expanded directories +-BINDIR= $(exec_prefix)/bin +-LIBDIR= $(exec_prefix)/lib ++BINDIR= @bindir@ ++LIBDIR= @libdir@ + MANDIR= @mandir@ + INCLUDEDIR= @includedir@ + CONFINCLUDEDIR= $(exec_prefix)/include |
