diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-04-30 08:18:41 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-04-30 08:18:41 +0000 |
commit | 1fde4f9cf5bd32061acc031d162d950ae958e9d2 (patch) | |
tree | 3ce43be02debce3a3d84d0282e5b73c64db08c6c /sci-libs | |
parent | Remove old versions. (diff) | |
download | gentoo-2-1fde4f9cf5bd32061acc031d162d950ae958e9d2.tar.gz gentoo-2-1fde4f9cf5bd32061acc031d162d950ae958e9d2.tar.bz2 gentoo-2-1fde4f9cf5bd32061acc031d162d950ae958e9d2.zip |
Fix linking. Per bug #314047.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/gdal/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/gdal/gdal-1.7.1-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sci-libs/gdal/ChangeLog b/sci-libs/gdal/ChangeLog index b861977164e3..9cdf90c0094f 100644 --- a/sci-libs/gdal/ChangeLog +++ b/sci-libs/gdal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/gdal # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v 1.79 2010/04/18 12:31:02 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v 1.80 2010/04/30 08:18:41 scarabeus Exp $ + + 30 Apr 2010; Tomáš Chvátal <scarabeus@gentoo.org> gdal-1.7.1-r1.ebuild: + Fix linking. Per bug #314047. 18 Apr 2010; Fabian Groffen <grobian@gentoo.org> gdal-1.7.1-r1.ebuild: Add back in necessary Prefix changes from 1.6.3 that seemingly got lost diff --git a/sci-libs/gdal/gdal-1.7.1-r1.ebuild b/sci-libs/gdal/gdal-1.7.1-r1.ebuild index 997c93efa368..35d06baa1a58 100644 --- a/sci-libs/gdal/gdal-1.7.1-r1.ebuild +++ b/sci-libs/gdal/gdal-1.7.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.1-r1.ebuild,v 1.2 2010/04/18 12:31:02 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.1-r1.ebuild,v 1.3 2010/04/30 08:18:41 scarabeus Exp $ EAPI="3" @@ -143,7 +143,7 @@ src_configure() { # mysql-config puts this in (and boy is it a PITA to get it out) sed \ -i -e "s;-Wl,-O1;;" \ - -i -e "s| -rdynamic ||" \ + -i -e "s| -rdynamic | |" \ GDALmake.opt || die "sed LIBS failed" # updated for newer swig (must specify the path to input files) |