Skip to content

Commit

Permalink
fixed bug from forgotten commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
ajohns committed Mar 2, 2017
1 parent a95d178 commit 604ae7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rezplugins/build_process/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _build_variant_base(self, variant, build_type, install_path=None,
build_type=build_type)

if not build_result.get("success"):
raise BuildError("The %s build system failed" % build_system_name)
raise BuildError("The %s build system failed." % build_system_name)

if install:
# install some files for debugging purposes
Expand Down
2 changes: 1 addition & 1 deletion src/rezplugins/build_system/cmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def _add_build_actions(cls, executor, context, package, variant,
cmake_path = os.path.join(os.path.dirname(__file__), "cmake_files")
template_path = os.path.join(os.path.dirname(__file__), "template_files")

#cls.set_standard_vars(executor, context, variant, build_type, install)
cls.set_standard_vars(executor, context, variant, build_type, install)

executor.env.CMAKE_MODULE_PATH.append(cmake_path.replace('\\', '/'))
executor.env.REZ_BUILD_DOXYFILE = os.path.join(template_path, 'Doxyfile')
Expand Down

0 comments on commit 604ae7c

Please sign in to comment.