diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-09 03:51:57 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-09 03:51:57 +0000 |
commit | f6ea97260d4e4ecaeda4f40a11dcca111f33e85a (patch) | |
tree | 8769e285f1f49483cad9abbe2949bcca60b9db0e /win32 | |
parent | 196476983065bfc7521559e37b85b85938548cf5 (diff) | |
download | ruby-f6ea97260d4e4ecaeda4f40a11dcca111f33e85a.tar.gz |
Makefile.sub: MESSAGE_BEGIN/END redirection
* win32/Makefile.sub (MESSAGE_BEGIN, MESSAGE_END): group the whole
`for` command, to redirect all lines but not overwrite line by
line.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index b68e85ee38..0f177a2b21 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -450,8 +450,8 @@ VCSUP = rem !endif ruby_pc = $(RUBY_BASE_NAME)-$(MAJOR).$(MINOR).pc -MESSAGE_BEGIN = @for %I in ( -MESSAGE_END = ) do @echo.%~I +MESSAGE_BEGIN = @(for %I in ( +MESSAGE_END = ) do @echo.%~I) ECHO_BEGIN = @echo. ECHO_END = |