From fb5ad386d2e71d03841f13f84a7de4c27b02d1f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sun, 6 Oct 2013 14:15:19 +0200 Subject: [PATCH] Build the generic plugin paths before configuring the plugins This enables us to use ${GEANYPLUGINs_DATADIR} and others already in the plugins' wscrpt_configure scripts. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 915255181..a87f469cf 100644 --- a/wscript +++ b/wscript @@ -102,6 +102,7 @@ def configure(conf): gtk_version = conf.check_cfg(modversion='gtk+-2.0') or 'Unknown' load_intltool_if_available(conf) + setup_configuration_env(conf) # build plugin list enabled_plugins = get_enabled_plugins(conf) @@ -111,7 +112,6 @@ def configure(conf): # now add the enabled_plugins to the env to remember them conf.env.append_value('enabled_plugins', enabled_plugins) - setup_configuration_env(conf) setup_makefile(conf) conf.write_config_header('config.h')