diff options
author | knu <knu@FreeBSD.org> | 2002-03-30 20:12:53 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-03-30 20:12:53 +0800 |
commit | e121e421c4ba57e9a948de7b47d7fc463d943ae7 (patch) | |
tree | c18a563082a3fa10df3cfc772e8affe4f13acb95 /www | |
parent | ea3299de3c900df6d9d7bce12f1592ed6441176a (diff) | |
download | freebsd-ports-graphics-e121e421c4ba57e9a948de7b47d7fc463d943ae7.tar.gz freebsd-ports-graphics-e121e421c4ba57e9a948de7b47d7fc463d943ae7.tar.zst freebsd-ports-graphics-e121e421c4ba57e9a948de7b47d7fc463d943ae7.zip |
cd dir && command -> cd dir; command
Diffstat (limited to 'www')
-rw-r--r-- | www/ruby-webunit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/ruby-webunit/Makefile b/www/ruby-webunit/Makefile index e00c0941e4b..5f71f5b96da 100644 --- a/www/ruby-webunit/Makefile +++ b/www/ruby-webunit/Makefile @@ -6,7 +6,7 @@ # PORTNAME= webunit -PORTVERSION= 20011019 +PORTVERSION= 20011022 CATEGORIES= www textproc ruby MASTER_SITES= http://xp.jbt.co.jp/download/webunit/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -31,7 +31,7 @@ DOCS_EN= index-en.html DOCS_JA= index-ja.html TIPS-ja.html TODO-ja.sdf do-install: - cd ${WRKSRC} && ${RUBY} install.rb + cd ${WRKSRC}; ${RUBY} install.rb .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} .for f in ${EXAMPLES_EN} |