]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in [darwin]: Pass -framework for executables too.
authorPeter O'Gorman <peter@pogma.com>
Wed, 4 May 2005 13:52:10 +0000 (13:52 +0000)
committerPeter O'Gorman <peter@pogma.com>
Wed, 4 May 2005 13:52:10 +0000 (13:52 +0000)
Reported by Adam <adam@albedo.art.pl>

ChangeLog
ltmain.in

index e6143de49570d3ab984a1f6e13c5ea9758f530b3..b52a26638ba69ee6e489f34a6def31865c1f62b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-04  Peter O'Gorman  <peter@pogma.com>
+
+       * ltmain.in [darwin]: Pass -framework for executables too.
+       Reported by Adam <adam@albedo.art.pl>
+
 2005-05-02  Andreas Schwab  <schwab@suse.de>
 
        * libltdl/Makefile.am (local-install-files): Rename back from
index b589056f341f0fde00de176c417365698361fbde..6d6eb188d9b94df4acc1cc1fad27a2b13b250b2e 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -1357,6 +1357,8 @@ EOF
          ;;
         darwin_framework)
          compiler_flags="$compiler_flags $arg"
+         compile_command="$compile_command $arg"
+         finalize_command="$finalize_command $arg"
          prev=
          continue
          ;;
@@ -1421,6 +1423,8 @@ EOF
       -framework)
         prev=darwin_framework
         compiler_flags="$compiler_flags $arg"
+       compile_command="$compile_command $arg"
+       finalize_command="$finalize_command $arg"
         continue
         ;;