diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-05-15 23:19:33 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-05-15 23:19:33 +0800 |
commit | 4d9ddd54d83d409e794352aff1d770551ff74478 (patch) | |
tree | 9e77906517a239f3cf85ed77083b09fb52aeee36 /devel/gobject-introspection/files | |
parent | f3642182602f69fb513835e595c55234ee0697da (diff) | |
download | marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.tar marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.tar.gz marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.tar.bz2 marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.tar.lz marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.tar.xz marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.tar.zst marcuscom-ports-4d9ddd54d83d409e794352aff1d770551ff74478.zip |
Update to 1.32.1.
Submitted by: mezz
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@16740 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gobject-introspection/files')
-rw-r--r-- | devel/gobject-introspection/files/patch-giscanner_sourcescanner.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/devel/gobject-introspection/files/patch-giscanner_sourcescanner.py b/devel/gobject-introspection/files/patch-giscanner_sourcescanner.py deleted file mode 100644 index e11b722a8..000000000 --- a/devel/gobject-introspection/files/patch-giscanner_sourcescanner.py +++ /dev/null @@ -1,12 +0,0 @@ ---- giscanner/sourcescanner.py.orig 2011-09-03 20:42:14.000000000 +0200 -+++ giscanner/sourcescanner.py 2011-11-04 13:36:04.000000000 +0100 -@@ -274,7 +274,8 @@ class SourceScanner(object): - - defines = ['__GI_SCANNER__'] - undefs = [] -- cpp_args = [os.environ.get('CC', 'cc'), '-E', '-C', '-I.', '-'] -+ cpp_args = os.environ.get('CC', 'cc').split() -+ cpp_args += ['-E', '-C', '-I.', '-'] - - cpp_args += self._cpp_options - proc = subprocess.Popen(cpp_args, |