diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-07 01:48:05 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-07 01:48:05 +0300 |
commit | a1cc37d523aaa9ab3a5443349c6c5ca0044a0a40 (patch) | |
tree | d5f78ae8232148d98d3859427b1639c386e4d72a | |
parent | Travis/AppVeyor: fix output (diff) | |
download | cmake-common-a1cc37d523aaa9ab3a5443349c6c5ca0044a0a40.tar.gz cmake-common-a1cc37d523aaa9ab3a5443349c6c5ca0044a0a40.zip |
boost/build: remove --label
Its intention was to use a single stage/ directory for multi-toolchain
builds (namely, using Cygwin & VS).
It decided it's pretty useless, since the same b2 executable can't be
used with both Cygwin & VS.
Diffstat (limited to '')
-rwxr-xr-x | boost/build/build.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/boost/build/build.py b/boost/build/build.py index f0d0d1c..02ab9b0 100755 --- a/boost/build/build.py +++ b/boost/build/build.py @@ -305,8 +305,6 @@ class BoostBuild: self.configurations = args.configurations or Configuration.all() self.stage_dir = 'stage' - if args.stage_prefix is not None: - self.stage_dir = os.path.join(self.stage_dir, args.stage_prefix) self.build_dir = args.build_dir self.boost_dir = args.boost_dir @@ -400,10 +398,6 @@ def _parse_args(argv=None): type=_parse_configuration, help='target configuration (e.g. Debug/Release)') - build.add_argument('--label', metavar='LABEL', - dest='stage_prefix', - help="build label (the output directory will be stage/LABEL/.../lib") - build.add_argument('--build', metavar='DIR', dest='build_dir', type=_parse_dir, help='Boost build directory (temporary directory unless specified)') |