Skip to content

Commit

Permalink
Date: Wed, 28 Jan 2004 02:37:04 +0100
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
slouken committed Jan 28, 2004
1 parent c26dbae commit b4d08c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ltmain.sh
Expand Up @@ -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!
Expand Down

0 comments on commit b4d08c9

Please sign in to comment.