From: sav-ix Date: Tue, 21 Aug 2018 18:06:32 +0000 (+0300) Subject: ICU-20051 fix 'goods=: command not found' warning during build (#64) X-Git-Tag: release-63-rc~111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3799ced3230845ffb4201b6aa1fe22e410d78a6c;p=icu ICU-20051 fix 'goods=: command not found' warning during build (#64) a typo 'test/Makefile.in' made noise in stderr. additionally brought similar code to the common view. --- diff --git a/icu4c/source/test/Makefile.in b/icu4c/source/test/Makefile.in index 7ce92770394..7bb5b222829 100644 --- a/icu4c/source/test/Makefile.in +++ b/icu4c/source/test/Makefile.in @@ -88,7 +88,7 @@ xcheck-recursive check-recursive check-exhaustive-recursive: @$(MKINSTALLDIRS) $(STATUS_TMP) @mystatus=$(STATUS_FULL)/status.$$$$.deleteme ; \ $(RMV) "$$mystatus".* ; \ - @goods=; \ + goods=; \ bads=; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -137,8 +137,8 @@ $(STATUS_FULL)/status.$(STATUS_NUM).deleteme.%: pcheck_setup # print out status pcheck: $(STATUS_FILES) - @goods= ; \ - bads= ; \ + @goods=; \ + bads=; \ echo "----------------------------------------"; \ for subdir in $(SUBDIRS); do \ if [ -s "$(MYSTATUS_R).$$subdir" ]; then \