summaryrefslogtreecommitdiff
path: root/nonworking/python
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
committerChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
commitf96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch)
treeedb17ec2c4ea13c5acb1c7350957a249a820e28d /nonworking/python
parentb6588aa6851fb220cedc387d21c51513ef8d67f4 (diff)
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'nonworking/python')
-rw-r--r--nonworking/python/python-gsl-0.2.0/cross-compile.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/nonworking/python/python-gsl-0.2.0/cross-compile.patch b/nonworking/python/python-gsl-0.2.0/cross-compile.patch
index e69de29bb2..69f68c7dc0 100644
--- a/nonworking/python/python-gsl-0.2.0/cross-compile.patch
+++ b/nonworking/python/python-gsl-0.2.0/cross-compile.patch
@@ -0,0 +1,18 @@
+
+#
+# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
+#
+
+--- pygsl-0.2.0/gsl_Extension.py~cross-compile 2003-11-19 10:08:53.000000000 +0100
++++ pygsl-0.2.0/gsl_Extension.py 2004-02-16 16:32:15.000000000 +0100
+@@ -85,8 +85,8 @@
+ else:
+ self.gsl_config_tool="gsl-config"
+
+- self.prefix = self.get_gsl_info('--prefix').strip()
+- self.cflags = self.get_gsl_info('--cflags').strip()
++ self.prefix = os.getenv( "STAGING" )+"/target"
++ self.cflags = self.get_gsl_info('--cflags').strip() + " -I%s/python2.3/include" % os.getenv( "STAGING" )
+ self.libs = self.get_gsl_info('--libs').strip()
+ self.version = self._split_version(self.get_gsl_info('--version').strip())
+