# HG changeset patch # User ihse # Date 1335813209 25200 # Node ID afeeed8e5f8cbf9eea4e78c301867e653391d520 # Parent 6a6ba0a07f33d37a2f97b1107e60c6a9a69ec84d 7165277: Fix missing execute permission issue running logger.sh Reviewed-by: ohair diff -r 6a6ba0a07f33 -r afeeed8e5f8c common/autoconf/configure --- a/common/autoconf/configure Thu Apr 19 12:18:32 2012 -0700 +++ b/common/autoconf/configure Mon Apr 30 12:13:29 2012 -0700 @@ -10489,7 +10489,7 @@ # Setup default logging of stdout and stderr to build.log in the output root. BUILD_LOG='$(OUTPUT_ROOT)/build.log' -BUILD_LOG_WRAPPER='$(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG)' +BUILD_LOG_WRAPPER='$(SH) $(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG)' diff -r 6a6ba0a07f33 -r afeeed8e5f8c common/autoconf/configure.ac --- a/common/autoconf/configure.ac Thu Apr 19 12:18:32 2012 -0700 +++ b/common/autoconf/configure.ac Mon Apr 30 12:13:29 2012 -0700 @@ -1004,7 +1004,7 @@ # Setup default logging of stdout and stderr to build.log in the output root. BUILD_LOG='$(OUTPUT_ROOT)/build.log' -BUILD_LOG_WRAPPER='$(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG)' +BUILD_LOG_WRAPPER='$(SH) $(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG)' AC_SUBST(BUILD_LOG) AC_SUBST(BUILD_LOG_WRAPPER)