From 32ae396f57e8ff231543bf32d65a44eec2221da8 Mon Sep 17 00:00:00 2001 From: ihse Date: Mon, 30 Apr 2012 12:13:29 -0700 Subject: [PATCH] 7165277: Fix missing execute permission issue running logger.sh Reviewed-by: ohair --- common/autoconf/configure | 2 +- common/autoconf/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/autoconf/configure b/common/autoconf/configure index 096fc73..13630cc 100644 --- a/common/autoconf/configure +++ b/common/autoconf/configure @@ -10489,7 +10489,7 @@ $as_echo "no, disabling ccaching of precompiled headers" >&6; } # 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 --git a/common/autoconf/configure.ac b/common/autoconf/configure.ac index e78f4fa..4c6b326 100644 --- a/common/autoconf/configure.ac +++ b/common/autoconf/configure.ac @@ -1004,7 +1004,7 @@ TESTFOR_PROG_CCACHE # 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) -- GitLab