From 6fb77d0a164072556ab7295ce6151033a70c450e Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 5 Oct 2014 21:08:15 +0000 Subject: [PATCH] applied patch #254 to allow skipping of ExDLL using SKIPPLUGINS git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6544 212acab6-be3b-0410-9dea-997c60f758d6 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index add0f181..e12b2b6c 100644 --- a/SConstruct +++ b/SConstruct @@ -160,7 +160,7 @@ opts.Add(('VER_PACKED', 'Packed version of NSIS in 0xMMmmmrrb format, used for f # installation opts.Add(('PREFIX', 'Installation prefix', dirs['prefix'])) opts.Add(ListVariable('SKIPSTUBS', 'A list of stubs that will not be built', 'none', stubs)) -opts.Add(ListVariable('SKIPPLUGINS', 'A list of plug-ins that will not be built', 'none', plugins)) +opts.Add(ListVariable('SKIPPLUGINS', 'A list of plug-ins that will not be built', 'none', plugin_libs + plugins)) opts.Add(ListVariable('SKIPUTILS', 'A list of utilities that will not be built', 'none', utils)) opts.Add(ListVariable('SKIPMISC', 'A list of plug-ins that will not be built', 'none', misc)) opts.Add(ListVariable('SKIPDOC', 'A list of doc files that will not be built/installed', 'none', doc))