summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorNomis101 <[email protected]>2019-09-09 18:11:54 +0200
committerBradley Sepos <[email protected]>2019-09-09 16:02:57 -0400
commit44c551cc3de909e61b3baa66adfcd4a706dce36c (patch)
treef6f3171f0ecd45e75ba781c4d0e809e5c4850920 /make
parenta34512a397e165483a3e6ba96f344184d4db93b4 (diff)
make: Rearrange the configure.py ordering for GNUmakefile generation.
Diffstat (limited to 'make')
-rw-r--r--make/configure.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/make/configure.py b/make/configure.py
index b77d377d2..325328bf8 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1951,6 +1951,10 @@ int main()
doc.add( 'PREFIX/', cfg.prefix_final + os.sep )
doc.addBlank()
+ doc.add( 'SECURITY.sandbox', int( options.enable_sandbox ))
+ doc.add( 'SECURITY.harden', int( options.enable_harden ))
+
+ doc.addBlank()
doc.add( 'FEATURE.asm', int( 0 ))
doc.add( 'FEATURE.fdk_aac', int( options.enable_fdk_aac ))
doc.add( 'FEATURE.ffmpeg_aac', int( options.enable_ffmpeg_aac ))
@@ -1966,10 +1970,6 @@ int main()
doc.add( 'FEATURE.x265', int( options.enable_x265 ))
doc.add( 'FEATURE.numa', int( options.enable_numa ))
- doc.addBlank()
- doc.add( 'SECURITY.sandbox', int( options.enable_sandbox ))
- doc.add( 'SECURITY.harden', int( options.enable_harden ))
-
if build_tuple.match( '*-*-darwin*' ) and options.cross is None:
doc.add( 'FEATURE.xcode', int( not (Tools.xcodebuild.fail or options.disable_xcode) ))
if not Tools.xcodebuild.fail and not options.disable_xcode: