diff options
author | knu <knu@FreeBSD.org> | 2002-03-30 11:57:22 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-03-30 11:57:22 +0000 |
commit | 94add0df8c07af832e829f3f03119fab1ed3a111 (patch) | |
tree | 59ad853957bd39792ccd92144f7ebc2eb5dce69e /textproc | |
parent | dde29dec2e5484e4303b72cbff696b0933eb44c2 (diff) | |
download | FreeBSD-ports-94add0df8c07af832e829f3f03119fab1ed3a111.zip FreeBSD-ports-94add0df8c07af832e829f3f03119fab1ed3a111.tar.gz |
cd dir && command -> cd dir; command
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ruby-nqxml/Makefile | 2 | ||||
-rw-r--r-- | textproc/ruby-rdtool/Makefile | 2 | ||||
-rw-r--r-- | textproc/ruby-rexml/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/textproc/ruby-nqxml/Makefile b/textproc/ruby-nqxml/Makefile index dbe75f3..fbfa490 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 225fbcd..36d1706 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 bcaec88..0d7d607 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} |