diff options
Diffstat (limited to 'meta/recipes-gnome/gnome/gobject-introspection/pathfix.patch')
-rw-r--r-- | meta/recipes-gnome/gnome/gobject-introspection/pathfix.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-gnome/gnome/gobject-introspection/pathfix.patch b/meta/recipes-gnome/gnome/gobject-introspection/pathfix.patch deleted file mode 100644 index a96e4b1a92..0000000000 --- a/meta/recipes-gnome/gnome/gobject-introspection/pathfix.patch +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Index: git/giscanner/dumper.py | ||
4 | =================================================================== | ||
5 | --- git.orig/giscanner/dumper.py 2010-11-29 15:14:35.000000000 -0800 | ||
6 | +++ git/giscanner/dumper.py 2010-11-29 15:14:57.115747154 -0800 | ||
7 | @@ -82,7 +82,7 @@ | ||
8 | self._tmpdir = tempfile.mkdtemp('', 'tmp-introspect', dir=os.getcwd()) | ||
9 | |||
10 | self._compiler_cmd = os.environ.get('CC', 'gcc') | ||
11 | - self._linker_cmd = os.environ.get('LD', self._compiler_cmd) | ||
12 | + self._linker_cmd = os.environ.get('CCLD', self._compiler_cmd) | ||
13 | self._pkgconfig_cmd = os.environ.get('PKG_CONFIG', 'pkg-config') | ||
14 | |||
15 | self._uninst_srcdir = os.environ.get( | ||
16 | Index: git/giscanner/scannermain.py | ||
17 | =================================================================== | ||
18 | --- git.orig/giscanner/scannermain.py 2010-11-29 15:14:35.000000000 -0800 | ||
19 | +++ git/giscanner/scannermain.py 2010-11-29 15:14:57.120747321 -0800 | ||
20 | @@ -283,6 +283,7 @@ | ||
21 | shown_include_warning = False | ||
22 | for include in options.includes: | ||
23 | if os.sep in include: | ||
24 | + continue | ||
25 | raise ValueError("Invalid include path %r" % (include, )) | ||
26 | include_obj = Include.from_string(include) | ||
27 | transformer.register_include(include_obj) | ||