diff options
author | Lukas Gorris <lukas.gorris@gmail.com> | 2009-03-30 21:20:14 +0200 |
---|---|---|
committer | Lukas Gorris <lukas.gorris@gmail.com> | 2009-03-30 21:20:14 +0200 |
commit | a93dfebb9e7a34ffba9b1ae5e8e496dfab4c3c43 (patch) | |
tree | 6c38a4617c92398269e6603a0509fc3006811368 /recipes/nonworking/python/python-gsl-0.2.0/cross-compile.patch | |
parent | 4255898da29e7e0c521d064afedbc4075b3e8155 (diff) | |
parent | d7fdcef3d8c8b80926d579c2db179b594429cebe (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/nonworking/python/python-gsl-0.2.0/cross-compile.patch')
-rw-r--r-- | recipes/nonworking/python/python-gsl-0.2.0/cross-compile.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/nonworking/python/python-gsl-0.2.0/cross-compile.patch b/recipes/nonworking/python/python-gsl-0.2.0/cross-compile.patch new file mode 100644 index 0000000000..1c90d59c54 --- /dev/null +++ b/recipes/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_DIR" )+"/target" ++ self.cflags = self.get_gsl_info('--cflags').strip() + " -I%s/python2.5/include" % os.getenv( "STAGING_DIR" ) + self.libs = self.get_gsl_info('--libs').strip() + self.version = self._split_version(self.get_gsl_info('--version').strip()) + |