BSD findで動作するように修正
authorj8takagi <j8takagi@nifty.com>
Mon, 9 Mar 2015 00:41:01 +0000 (09:41 +0900)
committerj8takagi <j8takagi@nifty.com>
Mon, 9 Mar 2015 00:41:01 +0000 (09:41 +0900)
doc/autotest_mk.texi
template/Group.mk

index 68cfa3b..a172ad2 100644 (file)
@@ -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 ダウンロード
 
index fc69391..fa222d9 100644 (file)
@@ -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