From f3bb5e27d9449793f7eb317eac659abab950dc5b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 28 Jan 2004 01:57:34 +0000 Subject: [PATCH] Date: Wed, 28 Jan 2004 02:37:04 +0100 From: Max Horn Subject: Small libtool patch (framework related) here is a small patch for ltmain.sh. It corrects a problems with the libSDL.la file, which prevented applications using a version of libtool w/o framework support (read: all currently released libtool version) to not being able to link with SDL anymore. I also notified the libtool maintainers, as the same problem exists in libtool CVS. --- ltmain.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ltmain.sh b/ltmain.sh index bf8c83a1c..bdfdbf882 100644 --- a/ltmain.sh +++ b/ltmain.sh @@ -3500,7 +3500,7 @@ EOF case $host in *-*-darwin*) newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).framework% -framework \1%g'` - dependency_libs=`$echo "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).framework% -framework \1%g'` + dependency_libs=`$echo "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).framework%%g'` ;; esac # Done checking deplibs!