From 19d3130df9cdb4623804cf7be13f1ba367a15191 Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 29 Jan 2002 09:19:45 +0000 Subject: Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; the ECHO macro is set to "echo" by default, but it is set to "true" if make(1) is invoked with the -s option while ECHO_CMD is always set to the echo command. --- lang/ruby16_static/Makefile | 4 ++-- lang/ruby_static/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lang') diff --git a/lang/ruby16_static/Makefile b/lang/ruby16_static/Makefile index 8b0fffe75c24..bf17e78ff910 100644 --- a/lang/ruby16_static/Makefile +++ b/lang/ruby16_static/Makefile @@ -80,9 +80,9 @@ do-extract: ${CP} -RPp $$extdir ${WRKSRC}/ext/ .endfor .if defined(STATIC) - ${ECHO} "option nodynamic" > ${WRKSRC}/ext/Setup + ${ECHO_CMD} "option nodynamic" > ${WRKSRC}/ext/Setup .else - ${ECHO} "#option nodynamic" > ${WRKSRC}/ext/Setup + ${ECHO_CMD} "#option nodynamic" > ${WRKSRC}/ext/Setup .endif (cd ${WRKSRC}/ext && \ for x in *; do [ -d $$x ] && echo $$x >> Setup; done) diff --git a/lang/ruby_static/Makefile b/lang/ruby_static/Makefile index 8b0fffe75c24..bf17e78ff910 100644 --- a/lang/ruby_static/Makefile +++ b/lang/ruby_static/Makefile @@ -80,9 +80,9 @@ do-extract: ${CP} -RPp $$extdir ${WRKSRC}/ext/ .endfor .if defined(STATIC) - ${ECHO} "option nodynamic" > ${WRKSRC}/ext/Setup + ${ECHO_CMD} "option nodynamic" > ${WRKSRC}/ext/Setup .else - ${ECHO} "#option nodynamic" > ${WRKSRC}/ext/Setup + ${ECHO_CMD} "#option nodynamic" > ${WRKSRC}/ext/Setup .endif (cd ${WRKSRC}/ext && \ for x in *; do [ -d $$x ] && echo $$x >> Setup; done) -- cgit