From 07bcc0acfaebbb1108dd59fc5ca10559dba35ddb Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Fri, 16 Jan 2009 20:27:56 +0100 Subject: [PATCH] Load extensions from the build folder if ./waf --run is used --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 26fbf2b9..0f924741 100644 --- a/wscript +++ b/wscript @@ -387,6 +387,7 @@ def shutdown (): folder = os.path.dirname (Build.bld.env['waf_config_files'][0]) try: command = folder + os.sep + APPNAME + os.sep + APPNAME - Utils.exec_command (command) + Utils.exec_command ('MIDORI_EXTENSION_PATH=' + folder + \ + os.sep + 'extensions' + ' ' + command) except: Utils.pprint ('RED', "Failed to run application.")