GNOME Bugzilla – Bug 720083
sysdeps: grok -isystem
Last modified: 2013-12-16 21:35:43 UTC
See patch.
Created attachment 263778 [details] [review] sysdeps: grok -isystem sysdeps inspects the user's CFLAGS and CPPFLAGS to try to get a list of system directories in which to search for c_include-type sysdeps. It does this by looking for -I flags. Make sure it also includes -isystem.
Review of attachment 263778 [details] [review]: One comment, feel free to commit with or without change. ::: jhbuild/utils/systeminstall.py @@ +73,3 @@ while True: arg = itr.next() + if arg.strip() == '-I' or arg.strip() == '-isystem': arg.strip() in ['-I', '-isystem'] is a little cleaner.
Attachment 263778 [details] pushed as c637d7c - sysdeps: grok -isystem