From: j8takagi Date: Sat, 28 Mar 2015 03:16:05 +0000 (+0900) Subject: テストで使うfindをGNU版以外でも対応できるよう修正 X-Git-Tag: v0.2p41~2 X-Git-Url: https://j8takagi.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50b97753e13cdd9e4777fe75482ac61ec6764aac;p=YACASL2.git テストで使うfindをGNU版以外でも対応できるよう修正 --- diff --git a/test/template/Group.mk b/test/template/Group.mk index fc69391..fa222d9 100644 --- a/test/template/Group.mk +++ b/test/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