diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2013-08-23 11:01:47 +0000 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2013-08-23 11:01:47 +0000 |
commit | f16522904c6d2646141fb7049d8aae6657900594 (patch) | |
tree | eb5378538c86b55717f10457bb27567d2488292f /dev-db/postgis/files | |
parent | remove obsolete patch (diff) | |
download | gentoo-2-f16522904c6d2646141fb7049d8aae6657900594.tar.gz gentoo-2-f16522904c6d2646141fb7049d8aae6657900594.tar.bz2 gentoo-2-f16522904c6d2646141fb7049d8aae6657900594.zip |
Add AR flags patch.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key D1BBFDA0)
Diffstat (limited to 'dev-db/postgis/files')
-rw-r--r-- | dev-db/postgis/files/postgis-2.0-arflags.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev-db/postgis/files/postgis-2.0-arflags.patch b/dev-db/postgis/files/postgis-2.0-arflags.patch new file mode 100644 index 000000000000..fa2e9a8da607 --- /dev/null +++ b/dev-db/postgis/files/postgis-2.0-arflags.patch @@ -0,0 +1,18 @@ +diff -Naruw a/raster/rt_core/Makefile.in b/raster/rt_core/Makefile.in +--- a/raster/rt_core/Makefile.in 2012-03-21 21:36:59.000000000 +0000 ++++ b/raster/rt_core/Makefile.in 2013-04-28 13:23:21.055728249 +0000 +@@ -8,7 +8,7 @@ + # + ############################################################################# + +-AR=ar rs ++ARFLAGS=rs + + CC=@CC@ + LIBLWGEOM_LDFLAGS=../../liblwgeom/.libs/liblwgeom.a +@@ -35,4 +35,4 @@ + rm -f Makefile + + librtcore.a: $(RT_OBJS) $(RT_HEADERS) +- $(AR) $(RT_LIB) $(RT_OBJS) ++ $(AR) $(ARFLAGS) $(RT_LIB) $(RT_OBJS) |