diff options
author | knu <knu@FreeBSD.org> | 2002-03-30 19:57:22 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-03-30 19:57:22 +0800 |
commit | 94add0df8c07af832e829f3f03119fab1ed3a111 (patch) | |
tree | 59ad853957bd39792ccd92144f7ebc2eb5dce69e /textproc/ruby-rexml | |
parent | dde29dec2e5484e4303b72cbff696b0933eb44c2 (diff) | |
download | freebsd-ports-graphics-94add0df8c07af832e829f3f03119fab1ed3a111.tar.gz freebsd-ports-graphics-94add0df8c07af832e829f3f03119fab1ed3a111.tar.zst freebsd-ports-graphics-94add0df8c07af832e829f3f03119fab1ed3a111.zip |
cd dir && command -> cd dir; command
Diffstat (limited to 'textproc/ruby-rexml')
-rw-r--r-- | textproc/ruby-rexml/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/ruby-rexml/Makefile b/textproc/ruby-rexml/Makefile index bcaec8832d7..0d7d607beb7 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} |