From 46297abcda6450aa7f2352717f4de421555ccfdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vedran=20Mileti=C4=87?= Date: Tue, 7 Jul 2015 13:32:26 +0200 Subject: [PATCH] Remove unused EXAMPLE_DIRECTORIES environment variable --- wscript | 7 ------- 1 file changed, 7 deletions(-) diff --git a/wscript b/wscript index c9b1f7bd4..79cf614fa 100644 --- a/wscript +++ b/wscript @@ -469,13 +469,6 @@ def configure(conf): else: why_not_examples = "defaults to disabled" - env['EXAMPLE_DIRECTORIES'] = [] - for dir in os.listdir('examples'): - if dir.startswith('.') or dir == 'CVS': - continue - if os.path.isdir(os.path.join('examples', dir)): - env['EXAMPLE_DIRECTORIES'].append(dir) - conf.report_optional_feature("ENABLE_EXAMPLES", "Build examples", env['ENABLE_EXAMPLES'], why_not_examples)