diff options
author | fhajny <fhajny@pkgsrc.org> | 2013-02-06 11:09:34 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2013-02-06 11:09:34 +0000 |
commit | ec8d67031d908757bd26c031d71015e1eae638a5 (patch) | |
tree | ef4711fd7df5d269b42e7383b4cb0c718b36a9e9 /multimedia/gpac/patches | |
parent | d0b14b91acd3d72cd992f6a37ddc6ad2c81086a5 (diff) | |
download | pkgsrc-ec8d67031d908757bd26c031d71015e1eae638a5.tar.gz |
Fix LDFLAGS parsing bug on SunOS (upstream PR submitted).
Diffstat (limited to 'multimedia/gpac/patches')
-rw-r--r-- | multimedia/gpac/patches/patch-configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/multimedia/gpac/patches/patch-configure b/multimedia/gpac/patches/patch-configure new file mode 100644 index 00000000000..d96e176b2df --- /dev/null +++ b/multimedia/gpac/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2013/02/06 11:09:35 fhajny Exp $ + +Fix bug for LDFLAGS parsing on SunOS. + +--- configure.orig 2012-05-25 12:05:57.000000000 +0000 ++++ configure +@@ -468,7 +468,7 @@ case $targetos in + SunOS) + make="gmake" + readelf="greadelf" +- LDFLAGS="${opt#--extra-ldflags=}" ++ LDFLAGS="$LDFLAGS" + instflags="" + #check for 64-bit + cat > $TMPC << EOF |