You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# Filename: package/.../python/libdir-from-configure.patch |
|
# Copyright (C) 2007 The OpenSDE Project |
|
# Copyright (C) 2006 The T2 SDE Project |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This patch file is dual-licensed. It is available under the license the |
|
# patched project is licensed under, as long as it is an OpenSource license |
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|
# of the GNU General Public License as published by the Free Software |
|
# Foundation; either version 2 of the License, or (at your option) any later |
|
# version. |
|
# --- SDE-COPYRIGHT-NOTE-END --- |
|
|
|
|
|
Fix pythons' Makefile template to take the bin and libdir from configure - |
|
fixes to use lib64 for architectures required. |
|
|
|
- Rene Rebe <rene@exactcode.de> |
|
|
|
--- Python-2.4.3/Makefile.pre.in.orig 2007-10-10 09:47:02.000000000 +0300 |
|
+++ Python-2.4.3/Makefile.pre.in 2007-10-10 19:26:51.000000000 +0300 |
|
@@ -78,12 +78,12 @@ |
|
exec_prefix= @exec_prefix@ |
|
|
|
# Expanded directories |
|
-BINDIR= $(exec_prefix)/bin |
|
-LIBDIR= $(exec_prefix)/lib |
|
+BINDIR= @bindir@ |
|
+LIBDIR= @libdir@ |
|
MANDIR= @mandir@ |
|
INCLUDEDIR= @includedir@ |
|
CONFINCLUDEDIR= $(exec_prefix)/include |
|
-SCRIPTDIR= $(prefix)/lib |
|
+SCRIPTDIR= @libdir@ |
|
|
|
# Detailed destination directories |
|
BINLIBDEST= $(LIBDIR)/python$(VERSION)
|
|
|