summaryrefslogtreecommitdiff
path: root/textproc
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
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')
-rw-r--r--textproc/ruby-nqxml/Makefile2
-rw-r--r--textproc/ruby-rdtool/Makefile2
-rw-r--r--textproc/ruby-rexml/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/textproc/ruby-nqxml/Makefile b/textproc/ruby-nqxml/Makefile
index dbe75f3113d9..fbfa490a7905 100644
--- a/textproc/ruby-nqxml/Makefile
+++ b/textproc/ruby-nqxml/Makefile
@@ -22,7 +22,7 @@ NO_BUILD= yes
DOCS= ChangeLog README Credits TODO
do-install:
- cd ${WRKSRC} && ${RUBY} install.rb
+ cd ${WRKSRC}; ${RUBY} install.rb
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}/dispatcher
${INSTALL_DATA} ${WRKSRC}/examples/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
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
diff --git a/textproc/ruby-rexml/Makefile b/textproc/ruby-rexml/Makefile
index bcaec8832d7e..0d7d607beb75 100644
--- a/textproc/ruby-rexml/Makefile
+++ b/textproc/ruby-rexml/Makefile
@@ -24,7 +24,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
DOCS= README index.html docs/tutorial.html doc img
do-install:
- cd ${WRKSRC} && ${RUBY} bin/install.rb
+ cd ${WRKSRC}; ${RUBY} bin/install.rb
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
.for f in ${DOCS}