diff options
author | knu <knu@FreeBSD.org> | 2002-03-30 20:06:42 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-03-30 20:06:42 +0800 |
commit | ea3299de3c900df6d9d7bce12f1592ed6441176a (patch) | |
tree | ae44222a5850e44de06124bd8d1ed6cf4b2f263d /devel/ruby-cvs | |
parent | a1621c9f0f8a1377fbffac696b161a910aa4d1d9 (diff) | |
download | freebsd-ports-gnome-ea3299de3c900df6d9d7bce12f1592ed6441176a.tar.gz freebsd-ports-gnome-ea3299de3c900df6d9d7bce12f1592ed6441176a.tar.zst freebsd-ports-gnome-ea3299de3c900df6d9d7bce12f1592ed6441176a.zip |
cd dir && command -> cd dir; command
Diffstat (limited to 'devel/ruby-cvs')
-rw-r--r-- | devel/ruby-cvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/ruby-cvs/Makefile b/devel/ruby-cvs/Makefile index 2b8e9efd0e4e..467e6c6585f2 100644 --- a/devel/ruby-cvs/Makefile +++ b/devel/ruby-cvs/Makefile @@ -31,9 +31,9 @@ DOCS= README TODO cvs.html diff.html tempdir.html do-build: .if !defined(NOPORTDOCS) - cd ${WRKSRC} && ${RUBY_RD} lib/cvs.rb > cvs.html - cd ${WRKSRC} && ${RUBY_RD} lib/diff.rb > diff.html - cd ${WRKSRC} && ${RUBY_RD} lib/tempdir.rb > tempdir.html + cd ${WRKSRC}; ${RUBY_RD} lib/cvs.rb > cvs.html + cd ${WRKSRC}; ${RUBY_RD} lib/diff.rb > diff.html + cd ${WRKSRC}; ${RUBY_RD} lib/tempdir.rb > tempdir.html .endif do-install: |