diff options
author | Andy Clayton <q3aiml@gmail.com> | 2020-03-31 21:39:32 -0500 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2020-04-04 09:06:02 +0800 |
commit | a413a072a5a8199d0acee6d6b7a9586a4ddd86ac (patch) | |
tree | 21ebfe30bb919f03a551286354926a8469f828f1 /acprep | |
parent | 43b07fbab3b4c144eca4a771524e59c531ffa074 (diff) | |
download | fork-ledger-a413a072a5a8199d0acee6d6b7a9586a4ddd86ac.tar.gz fork-ledger-a413a072a5a8199d0acee6d6b7a9586a4ddd86ac.tar.bz2 fork-ledger-a413a072a5a8199d0acee6d6b7a9586a4ddd86ac.zip |
fix macports dependencies on 10.14+
10.14+ does not support universal builds:
Error: python27 cannot be installed for the configured universal_archs 'x86_64 i386' because the arch(s) 'i386' are not supported.
From https://trac.macports.org/ticket/57369#comment:6
You just can't install ports universal on Mojave, so don't try to do so. Don't specify +universal on the command line
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -57,7 +57,7 @@ class BoostInfo(object): return [ 'boost' ] if system in ['darwin-macports']: - return [ 'boost-jam', 'boost', '+python27+universal' ] + return [ 'boost-jam', 'boost', '+python27' ] if system in ['centos']: return [ 'boost-devel' ] @@ -510,13 +510,13 @@ class PrepareBuild(CommandLineApp): packages = [ 'sudo', 'port', 'install', '-f', 'automake', 'autoconf', 'libtool', - 'python27', '+universal', - 'libiconv', '+universal', - 'zlib', '+universal', - 'gmp' ,'+universal', 'mpfr', '+universal', - 'ncurses', '+universal', - 'gettext' ,'+universal', - 'libedit' ,'+universal', + 'python27', + 'libiconv', + 'zlib', + 'gmp', 'mpfr', + 'ncurses', + 'gettext', + 'libedit', 'texlive-xetex', 'doxygen', 'graphviz', 'texinfo', 'lcov', 'sloccount' ] + BoostInfo().dependencies('darwin-macports') |