From: j8takagi Date: Mon, 6 Jan 2014 09:45:54 +0000 (+0900) Subject: Makefile中の=を:=に修正 X-Git-Tag: 0.2p6~2 X-Git-Url: https://j8takagi.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=449ebe79f609b29a7fa1ec8564c3e848037afd87;p=autotest_mk.git Makefile中の=を:=に修正 --- diff --git a/template/Group.mk b/template/Group.mk index 238e48b..57f83e7 100644 --- a/template/Group.mk +++ b/template/Group.mk @@ -29,7 +29,7 @@ GROUP_DIR := $(CURDIR) GROUP := $(notdir $(GROUP_DIR)) # テスト名。カレントディレクトリー内の、名前が大文字または.以外で始まるディレクトリー -TESTS = $(notdir $(shell $(FIND) -maxdepth 1 -name "[^A-Z.]*" -type d)) +TESTS := $(notdir $(shell $(FIND) -maxdepth 1 -name "[^A-Z.]*" -type d)) # テストグループログファイル GROUP_LOG_FILE := $(shell $(ECHO) $(GROUP) | $(TR) '[a-z]' '[A-Z]').log