From a6482310b7e20e83ab2fff1dce59057c1724dbdd Mon Sep 17 00:00:00 2001 From: Wes Kocher Date: Tue, 24 May 2016 16:25:14 -0700 Subject: [PATCH] Backed out changeset 408319d87eac (bug 1275297) for breaking at least Windows SM builds with "MSVS_VERSION not defined" CLOSED TREE --- moz.configure | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/moz.configure b/moz.configure index 1d36ca93bc48..e0b6416192f5 100644 --- a/moz.configure +++ b/moz.configure @@ -109,14 +109,12 @@ def build_backends_choices(help): option('--enable-build-backend', nargs='+', choices=build_backends_choices, help='Enable additional build backends') -@depends('--enable-build-backend', '--enable-artifact-builds', target) -def build_backend(backends, artifact_builds, target): +@depends('--enable-build-backend', '--enable-artifact-builds') +def build_backend(backends, artifact_builds): if artifact_builds: all_backends = ['FasterMake+RecursiveMake'] else: all_backends = ['RecursiveMake', 'FasterMake'] - if target.os == 'WINNT': - all_backends.append('VisualStudio') all_backends.extend(backends) return unique_list(all_backends)