From: j8takagi Date: Mon, 9 Mar 2015 00:41:01 +0000 (+0900) Subject: BSD findで動作するように修正 X-Git-Tag: 0.2p12~4 X-Git-Url: https://j8takagi.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7493f62184f6781986ae3e828dbc586ff58de85;p=autotest_mk.git BSD findで動作するように修正 --- diff --git a/doc/autotest_mk.texi b/doc/autotest_mk.texi index 68cfa3b..a172ad2 100644 --- a/doc/autotest_mk.texi +++ b/doc/autotest_mk.texi @@ -170,8 +170,6 @@ Ubuntu Linux 10.10 Mac OS X バージョン 10.6.5 @end itemize -Mac OS Xでは、@uref{http://www.gnu.org/software/findutils/, GNU Findutils}をインストールしてください。 - @node Download, Verify, Requirements, Install @section ダウンロード diff --git a/template/Group.mk b/template/Group.mk index fc69391..fa222d9 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