diff options
Diffstat (limited to 'src/engine/SCons/Tool/MSCommon/vs.py')
| -rw-r--r-- | src/engine/SCons/Tool/MSCommon/vs.py | 19 | 
1 files changed, 9 insertions, 10 deletions
diff --git a/src/engine/SCons/Tool/MSCommon/vs.py b/src/engine/SCons/Tool/MSCommon/vs.py index dafdbaf..72d4421 100644 --- a/src/engine/SCons/Tool/MSCommon/vs.py +++ b/src/engine/SCons/Tool/MSCommon/vs.py @@ -1,5 +1,5 @@  # -# Copyright (c) 2001 - 2017 The SCons Foundation +# Copyright (c) 2001 - 2019 The SCons Foundation  #  # Permission is hereby granted, free of charge, to any person obtaining  # a copy of this software and associated documentation files (the @@ -21,7 +21,7 @@  # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  # -__revision__ = "src/engine/SCons/Tool/MSCommon/vs.py rel_3.0.0:4395:8972f6a2f699 2017/09/18 12:59:24 bdbaddog" +__revision__ = "src/engine/SCons/Tool/MSCommon/vs.py 103260fce95bf5db1c35fb2371983087d85dd611 2019-07-13 18:25:30 bdbaddog"  __doc__ = """Module to detect Visual Studio and/or Visual C/C++  """ @@ -68,9 +68,9 @@ class VisualStudio(object):          SCons.Tool.MSCommon.vc.get_installed_vcs()          dir = SCons.Tool.MSCommon.vc.find_vc_pdir(self.vc_version)          if not dir: -            debug('find_vs_dir():  no installed VC %s' % self.vc_version) +            debug('find_vs_dir_by_vc():  no installed VC %s' % self.vc_version)              return None -        return dir +        return os.path.abspath(os.path.join(dir, os.pardir))      def find_vs_dir_by_reg(self):          root = 'Software\\' @@ -95,12 +95,11 @@ class VisualStudio(object):          First try to find by registry, and if that fails find via VC dir          """ - -        if True: -            vs_dir=self.find_vs_dir_by_reg() -            return vs_dir -        else: -            return self.find_vs_dir_by_vc() +        vs_dir=self.find_vs_dir_by_reg() +        if not vs_dir: +            vs_dir = self.find_vs_dir_by_vc() +        debug('find_vs_dir(): found VS in ' + str(vs_dir )) +        return vs_dir      def find_executable(self):          vs_dir = self.get_vs_dir()  | 
