diff options
author | John Stebbins <[email protected]> | 2019-04-17 11:23:41 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-04-17 11:23:41 -0600 |
commit | 8d4870fd116f1123541c25ffb99603facb7a8f09 (patch) | |
tree | 413a5f0d98d1f408a20b0552771e67647938c366 /make | |
parent | f96678482e066da83cb6927b150c53bce4e1009a (diff) |
configure: fix osx build
revert migrateion BUILD.ncpu and BUILD.jobs to HOST. these are build
machine specific values
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py index 8f1154690..bfe7e9839 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1926,6 +1926,7 @@ int main() doc.add( 'BUILD.extra', build_tuple.extra ) doc.add( 'BUILD.title', '%s %s' % (build_tuple.systemf,arch.mode.default) ) doc.add( 'BUILD.ncpu', core.count ) + doc.add( 'BUILD.jobs', core.jobs ) doc.add( 'BUILD.date', time.strftime('%c', now) ), doc.addBlank() @@ -1937,8 +1938,6 @@ int main() doc.add( 'HOST.release', host_tuple.release ) doc.add( 'HOST.extra', host_tuple.extra ) doc.add( 'HOST.title', host_tuple.title ) - doc.add( 'HOST.ncpu', core.count ) - doc.add( 'HOST.jobs', core.jobs ) doc.add( 'HOST.cross', int(options.cross != None or arch.mode.mode != arch.mode.default) ) if options.cross: |