From 73e3ea958d625379b8df8af2c6efb4e903338470 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 28 Jan 2008 00:35:48 +0000 Subject: [PATCH] * common.mk (help): use double quotes for nmake. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ common.mk | 22 +++++++++++----------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 18bea96e0d..65d0fb7f4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Jan 28 09:34:54 2008 NAKAMURA Usaku + + * common.mk (help): use double quotes for nmake. + Mon Jan 28 00:39:09 2008 Nobuyoshi Nakada * parse.y (parser_set_encode): check if encoding is ASCII compatible. diff --git a/common.mk b/common.mk index 58a1331f0b..d04460c614 100644 --- a/common.mk +++ b/common.mk @@ -799,14 +799,14 @@ up: sed '-e$${' -eh "-es/[^0-9]//g" "-es/^/#define RUBY_REVISION /" "-ew$(srcdir)/revision.h" -eg "-e}" help: - @echo ' Makefile of Ruby' - @echo - @echo 'targets:' - @echo ' all: compile ruby and extensions' - @echo ' check: equals make test test-all' - @echo ' test: ruby core tests' - @echo ' test-all: all ruby tests' - @echo ' install: install all ruby distributions' - @echo ' install-nodoc: install without rdoc' - @echo ' clean: clean built objects' - @echo ' golf: for golfers' + @echo " Makefile of Ruby" + @echo "" + @echo "targets:" + @echo " all: compile ruby and extensions" + @echo " check: equals make test test-all" + @echo " test: ruby core tests" + @echo " test-all: all ruby tests" + @echo " install: install all ruby distributions" + @echo " install-nodoc: install without rdoc" + @echo " clean: clean built objects" + @echo " golf: for golfers"