diff options
Diffstat (limited to 'main/gobject-introspection/001-ccache.patch')
-rw-r--r-- | main/gobject-introspection/001-ccache.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/main/gobject-introspection/001-ccache.patch b/main/gobject-introspection/001-ccache.patch deleted file mode 100644 index 1f9145df50..0000000000 --- a/main/gobject-introspection/001-ccache.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 404af5e1d854522df2b02db9f8805ce19f9e8b76 Mon Sep 17 00:00:00 2001 -From: Colin Walters <walters@verbum.org> -Date: Fri, 22 Oct 2010 15:28:40 +0000 -Subject: Handle CC="ccache gcc" for linker command too - -The compiler path explicitly split()s the variable, we should do -so in the linker path too. ---- -diff --git a/giscanner/dumper.py b/giscanner/dumper.py -index 773dec9..7462aa3 100644 ---- a/giscanner/dumper.py -+++ b/giscanner/dumper.py -@@ -200,7 +200,8 @@ class DumpCompiler(object): - args.append('--tag=CC') - args.append('--silent') - -- args.extend([self._linker_cmd, '-o', output]) -+ args = self._linker_cmd.split() -+ args.extend(['-o', output]) - if libtool: - args.append('-export-dynamic') - --- -cgit v0.8.3.1 |