diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-01-29 11:48:57 +0000 |
commit | 897d06aa9731645e0a7fa7c315028dcdbfa3c798 (patch) | |
tree | 485cefa9621a788f5d27ac4dcab7fc6aa9843be6 /net/ruby-drb | |
parent | Use ${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.
Notes
Notes:
svn path=/head/; revision=53958
Diffstat (limited to 'net/ruby-drb')
-rw-r--r-- | net/ruby-drb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ruby-drb/Makefile b/net/ruby-drb/Makefile index 190a7db30d80..88c661fac453 100644 --- a/net/ruby-drb/Makefile +++ b/net/ruby-drb/Makefile @@ -32,7 +32,7 @@ post-patch: .if !defined(NOPORTDOCS) cd ${WRKSRC}/doc && for f in drb-ref.rd*; do \ ${MV} $$f $$f.orig; \ - ( ${ECHO} '=begin'; ${CAT} $$f.orig; ${ECHO} '=end' ) > $$f; \ + ( ${ECHO_CMD} '=begin'; ${CAT} $$f.orig; ${ECHO_CMD} '=end' ) > $$f; \ ${RM} $$f.orig; \ done .endif @@ -40,10 +40,10 @@ post-patch: do-build: .if !defined(NOPORTDOCS) cd ${WRKSRC}/doc && for f in *.rd; do \ - ${RUBY_RD} $$f > `${ECHO} $$f | ${SED} 's/\.rd$$/.html/'`; \ + ${RUBY_RD} $$f > `${ECHO_CMD} $$f | ${SED} 's/\.rd$$/.html/'`; \ done cd ${WRKSRC}/doc && for f in *.rd.ja; do \ - ${RUBY_RD} $$f > `${ECHO} $$f | ${SED} 's/\.rd.ja$$/.ja.html/'`; \ + ${RUBY_RD} $$f > `${ECHO_CMD} $$f | ${SED} 's/\.rd.ja$$/.ja.html/'`; \ done ${MKDIR} ${WRKSRC}/doc/ja cd ${WRKSRC}/doc && ${MV} *.rd.ja *.ja.html ja/ |