From bed408ebb0266da4b7ca7e3e590e6907b00e696b Mon Sep 17 00:00:00 2001
From: Sascha Girrulat <sascha@girrulat.de>
Date: Wed, 8 Feb 2012 19:28:27 +0100
Subject: [PATCH] use-py-build-files-with-python
---
components/SConscript | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/components/SConscript b/components/SConscript
index a94e59b..1038963 100644
--- a/components/SConscript
+++ b/components/SConscript
@@ -74,8 +74,8 @@ with open(gecko_include + os.sep + 'mozilla-config.h', 'r') as f:
break
# Create two builders to create xpt and header files from idl.
-bxpt = Builder(action = 'typelib.py -Icomponents -I' + gecko_idl + ' -o $TARGET $SOURCE' + ' --cachedir="."', suffix = '.xpt', src_suffix = '.idl')
-bhdr = Builder(action = 'header.py -Icomponents -I' + gecko_idl + ' -o $TARGET $SOURCE' + ' --cachedir="."', suffix = '.h', src_suffix = '.idl')
+bxpt = Builder(action = 'python /usr/lib/xulrunner-devel-10.0/sdk/bin/typelib.py -Icomponents -I' + gecko_idl + ' -o $TARGET $SOURCE' + ' --cachedir="."', suffix = '.xpt', src_suffix = '.idl')
+bhdr = Builder(action = 'python /usr/lib/xulrunner-devel-10.0/sdk/bin/header.py -Icomponents -I' + gecko_idl + ' -o $TARGET $SOURCE' + ' --cachedir="."', suffix = '.h', src_suffix = '.idl')
# Create environment object for build
--
1.7.7.3