configure: Fix 'make -s' on Windows

Use REM instead of '#' to disable @echo commands.
Thanks to Ben Franksen for the hint.
This commit is contained in:
Andrew Johnson
2011-06-01 15:11:05 -05:00
parent ce0114418f
commit f1a646240b
4 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -82,7 +82,8 @@ COMMON_DIR = ../O.Common
#-------------------------------------------------------
# Make echo output - suppress echoing if make's '-s' flag is set
ECHO := $(if $(findstring s,$(MAKEFLAGS)),\#,@echo)
COMMENT = \#
ECHO = $(if $(findstring s,$(MAKEFLAGS)),$(COMMENT),@echo)
#-------------------------------------------------------
ifdef T_A
@@ -12,6 +12,7 @@ MV = $(PERL) -MExtUtils::Command -e mv
RM = $(PERL) -MExtUtils::Command -e rm_f
MKDIR = $(PERL) -MExtUtils::Command -e mkpath
RMDIR = $(PERL) -MExtUtils::Command -e rm_rf
COMMENT = REM
WIND_HOST_TYPE = x86-win32
OSITHREAD_USE_DEFAULT_STACK = NO
@@ -15,6 +15,7 @@ MV = $(PERL) -MExtUtils::Command -e mv
RM = $(PERL) -MExtUtils::Command -e rm_f
MKDIR = $(PERL) -MExtUtils::Command -e mkpath
RMDIR = $(PERL) -MExtUtils::Command -e rm_rf
COMMENT = REM
WIND_HOST_TYPE = x86-win32
OSITHREAD_USE_DEFAULT_STACK = NO
+1
View File
@@ -12,6 +12,7 @@ MV = $(PERL) -MExtUtils::Command -e mv
RM = $(PERL) -MExtUtils::Command -e rm_f
MKDIR = $(PERL) -MExtUtils::Command -e mkpath
RMDIR = $(PERL) -MExtUtils::Command -e rm_rf
COMMENT = REM
WIND_HOST_TYPE = x86-win32
OSITHREAD_USE_DEFAULT_STACK = NO