From: Michal Sojka Date: Wed, 16 Apr 2008 20:42:00 +0000 (+0000) Subject: Fixed typo in messages from -check targets X-Git-Tag: v0.1~20 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/omk.git/commitdiff_plain/3dbbe898b34508489e6594cf34fffa97a056e841 Fixed typo in messages from -check targets darcs-hash:20080416204216-f2ef6-122cb3d29d8ad28bd56ff13226a329dcc761bab9.gz --- diff --git a/snippets/linux b/snippets/linux index ad59953..7126df5 100644 --- a/snippets/linux +++ b/snippets/linux @@ -151,7 +151,7 @@ endif ifdef OMK_TESTSROOT default-config-pass-check include-pass-check: library-pass-check binary-pass-check: - @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot file compiler: $(CC)) + @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot find compiler: $(CC)) endif #===================================================================== diff --git a/snippets/sdcc b/snippets/sdcc index 33bc2fc..0816a81 100644 --- a/snippets/sdcc +++ b/snippets/sdcc @@ -92,7 +92,7 @@ OBJS_DIR := $(USER_OBJS_DIR) ifdef OMK_TESTSROOT default-config-pass-check include-pass-check: library-pass-check binary-pass-check: - @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot file compiler: $(CC)) + @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot find compiler: $(CC)) @[ -z "$(wildcard $(USER_LIB_DIR)/$(LD_SCRIPT).ld*)" ] && $(call canttest,LD_SCRIPT $(LD_SCRIPT).ld* not found) endif diff --git a/snippets/sysless b/snippets/sysless index 57eb369..eb863ea 100644 --- a/snippets/sysless +++ b/snippets/sysless @@ -190,7 +190,7 @@ endif # HOST_RULE_TEMPLATES ifdef OMK_TESTSROOT default-config-pass-check include-pass-check: library-pass-check binary-pass-check: - @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot file compiler: $(CC)) + @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot find compiler: $(CC)) endif #===================================================================== diff --git a/snippets/vxworks b/snippets/vxworks index c494ba0..16050df 100644 --- a/snippets/vxworks +++ b/snippets/vxworks @@ -62,7 +62,7 @@ endif ifdef OMK_TESTSROOT default-config-pass-check include-pass-check: library-pass-check binary-pass-check: - @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot file compiler: $(CC)) + @[ -x "$(shell which $(CC))" ] || $(call canttest,Cannot find compiler: $(CC)) @[ -x "$(WRENV)" ] || $(call canttest,Cannot execute wrenv script) endif