summaryrefslogtreecommitdiff
path: root/textproc/ruby-rdtool
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-03-30 11:57:22 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-03-30 11:57:22 +0000
commit7b539aad87b85c196059bb2f209bba1a06de797d (patch)
tree0e8d9dc0d7c0b42df6b3fcf32b3cf544c399cbf3 /textproc/ruby-rdtool
parentCorrecting some problems in the control script (diff)
cd dir && command -> cd dir; command
Notes
Notes: svn path=/head/; revision=56942
Diffstat (limited to 'textproc/ruby-rdtool')
-rw-r--r--textproc/ruby-rdtool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/ruby-rdtool/Makefile b/textproc/ruby-rdtool/Makefile
index 225fbcd69bf0..36d17062f4ba 100644
--- a/textproc/ruby-rdtool/Makefile
+++ b/textproc/ruby-rdtool/Makefile
@@ -46,7 +46,7 @@ pre-build:
.if !defined(NOPORTDOCS)
post-build:
.for f in README.rd.ja doc/rd-draft.rd doc/rd-draft.rd.ja
- cd ${WRKSRC} && ${RUBY} -I. rd2 -r rd/rd2html-lib.rb ${f} \
+ cd ${WRKSRC}; ${RUBY} -I. rd2 -r rd/rd2html-lib.rb ${f} \
> ${f:S/.rd.ja$/.ja.html/:S/.rd$/.html/}
.endfor
.endif