diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-12-10 00:18:17 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-12-10 00:20:00 +0100 |
commit | 1de9ccb8a2254454756c391df8e7ed1d29383d0a (patch) | |
tree | a6db1c1c57e126aac5ae9028ff58392f2172c96b /packages/python/python-2.6.1/00-fix-bindir-libdir-for-cross.patch | |
parent | 358927bd781103e39fec21c853fb67738ec3f7c1 (diff) |
Python 2.6: here we are. WIP :)
Diffstat (limited to 'packages/python/python-2.6.1/00-fix-bindir-libdir-for-cross.patch')
-rw-r--r-- | packages/python/python-2.6.1/00-fix-bindir-libdir-for-cross.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/python/python-2.6.1/00-fix-bindir-libdir-for-cross.patch b/packages/python/python-2.6.1/00-fix-bindir-libdir-for-cross.patch new file mode 100644 index 0000000000..2559e3a0e4 --- /dev/null +++ b/packages/python/python-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 |