From 06e6dab388f2e916cf7d4e9af79165c440fc0e9b Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 6 Sep 2012 09:38:33 +0000 Subject: Misc (re #1562): pkgconfig removed multiple occurences of -framework from Libs command-line causing link error (thanks Samuel Vinson for the report) git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4246 74dad513-b988-da41-8d7b-12977e46ad98 --- pkgconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgconfig.py') diff --git a/pkgconfig.py b/pkgconfig.py index 496e311b..300045fa 100644 --- a/pkgconfig.py +++ b/pkgconfig.py @@ -163,7 +163,7 @@ if __name__ == "__main__": continue if REMOVE_THESE.count(opt) != 0: continue - if filtered_opts.count(opt) != 0: + if opt != '-framework' and opt != '--framework' and filtered_opts.count(opt) != 0: continue filtered_opts.append(opt) -- cgit v1.2.3