summaryrefslogtreecommitdiff
path: root/audio/esound/patches
diff options
context:
space:
mode:
authordanw <danw@pkgsrc.org>2003-11-10 01:14:43 +0000
committerdanw <danw@pkgsrc.org>2003-11-10 01:14:43 +0000
commitbcef62518c3a0ca9893df8200eea0524c90eef64 (patch)
treeaeba2fc66fdb35d6c7101e39b5a58d4dd4136aa6 /audio/esound/patches
parent25076b366031b0a4c79a11c7c9a9a918fdd1900c (diff)
downloadpkgsrc-bcef62518c3a0ca9893df8200eea0524c90eef64.tar.gz
tweak esd-config.in patch so it doesn't generate a sh syntax error
when buildlink strips out $RPATH_FLAG on Darwin
Diffstat (limited to 'audio/esound/patches')
-rw-r--r--audio/esound/patches/patch-ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/esound/patches/patch-ac b/audio/esound/patches/patch-ac
index def45de84d8..a6970896817 100644
--- a/audio/esound/patches/patch-ac
+++ b/audio/esound/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.2 2002/04/29 08:40:28 wiz Exp $
+$NetBSD: patch-ac,v 1.3 2003/11/10 01:14:43 danw Exp $
--- esd-config.in.orig Fri Feb 5 23:34:19 1999
+++ esd-config.in
@@ -10,7 +10,7 @@ $NetBSD: patch-ac,v 1.2 2002/04/29 08:40:28 wiz Exp $
+ libdirs="-L@libdir@ -Wl,-R@libdir@"
for i in $audiofile_libs ; do
- if test $i != -L@libdir@ ; then
-+ if test $i != -L@libdir@ -a $i != -Wl,-R@libdir@; then
++ if test $i != -L@libdir@ -a "$i" != "-Wl,-R@libdir@"; then
if test -z "$my_audiofile_libs" ; then
my_audiofile_libs="$i"
else