Ralf Wildenhues wrote:
+ # Convert "-framework foo" to "foo.ltframework"
+ if test -n "$inherited_linker_flags"; then
+ tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed
-e 's/-framework \([[^ $]]*\)/\1.ltframework/g'`
+ for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
+ case " $new_inherited_linker_flags " in
+ *" tmp_inherited_linker_flag "*) ;;
^
Shouldn't there be a `$' here? This was what my hint was about.
Of course there should. The whole attempt to remove duplicates will fail
miserably otherwise.
/me kicks self in butt repeatedly.
Okay with this fix?
Peter