summaryrefslogtreecommitdiff
path: root/lang/jruby
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:24:09 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-01-29 11:24:09 +0000
commitc982f5faf1c27ba011ef14e71aadc2182660d704 (patch)
tree2b0b412c02b07adeb72e10a7417749a64cea16ec /lang/jruby
parentUse ${ECHO_CMD} instead of ${ECHO} where you mean the echo command; (diff)
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. Use command macros where appropriate.
Notes
Notes: svn path=/head/; revision=53957
Diffstat (limited to 'lang/jruby')
-rw-r--r--lang/jruby/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/jruby/Makefile b/lang/jruby/Makefile
index 88cd473c1241..729710a8d7d5 100644
--- a/lang/jruby/Makefile
+++ b/lang/jruby/Makefile
@@ -33,8 +33,8 @@ post-extract:
do-build:
( \
- ${ECHO} '#!/bin/sh'; \
- ${ECHO} 'exec ${JAVA} -jar ${PREFIX}/share/java/classes/jruby.jar "$$@"'; \
+ ${ECHO_CMD} '#!/bin/sh'; \
+ ${ECHO_CMD} 'exec ${JAVA} -jar ${PREFIX}/share/java/classes/jruby.jar "$$@"'; \
) > ${WRKSRC}/jruby
do-install:
@@ -50,8 +50,8 @@ post-install:
.if !defined(NOPORTDOCS)
cd ${WRKSRC}; find ${FILES} -type f | sort | ${SED} 's,^,share/java/${PORTNAME}/,' >> ${TMPPLIST}
cd ${WRKSRC}; find ${FILES} -type d | sort -r | ${SED} 's,^,@dirrm share/java/${PORTNAME}/,' >> ${TMPPLIST}
- ${ECHO} '@dirrm share/java/${PORTNAME}' >> ${TMPPLIST}
+ ${ECHO_CMD} '@dirrm share/java/${PORTNAME}' >> ${TMPPLIST}
.endif
- ${ECHO} '@unexec ${RMDIR} %D/share/java 2> /dev/null || true' >> ${TMPPLIST}
+ ${ECHO_CMD} '@unexec ${RMDIR} %D/share/java 2> /dev/null || true' >> ${TMPPLIST}
.include <bsd.port.mk>