123456789101112131415161718192021222324252627282930313233 |
- From 3a9d1e5ee0aae56fafec0beba2014c19e4ff310c Mon Sep 17 00:00:00 2001
- From: Alexander Kanavin <alex.kanavin@gmail.com>
- Date: Wed, 23 Mar 2016 17:07:28 +0200
- Subject: [PATCH] Revert an incomplete upstream attempt at cross-compile support
- Upstream-Status: Pending
- Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
- Signed-off-by: Adam Duskett <aduskett@gmail.com>
- ---
- common.mk | 4 ----
- giscanner/gdumpparser.py | 6 ------
- 2 files changed, 10 deletions(-)
- diff --git a/giscanner/gdumpparser.py b/giscanner/gdumpparser.py
- index 1134f33..9bdc2bc 100644
- --- a/giscanner/gdumpparser.py
- +++ b/giscanner/gdumpparser.py
- @@ -156,12 +156,6 @@ blob containing data gleaned from GObject's primitive introspection."""
- out_path = os.path.join(self._binary.tmpdir, 'dump.xml')
- args = []
- -
- - # Prepend the launcher command and arguments, if defined
- - launcher = os.environ.get('GI_CROSS_LAUNCHER')
- - if launcher:
- - args.extend(launcher.split())
- -
- args.extend(self._binary.args)
- args.append('--introspect-dump=%s,%s' % (in_path, out_path))
-
- --
- 2.7.0
|