diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-03-30 11:57:22 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-03-30 11:57:22 +0000 |
commit | 7b539aad87b85c196059bb2f209bba1a06de797d (patch) | |
tree | 0e8d9dc0d7c0b42df6b3fcf32b3cf544c399cbf3 /net/ruby-xmlrpc/Makefile | |
parent | Correcting some problems in the control script (diff) |
cd dir && command -> cd dir; command
Diffstat (limited to '')
-rw-r--r-- | net/ruby-xmlrpc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ruby-xmlrpc/Makefile b/net/ruby-xmlrpc/Makefile index 305007dd82a4..07d16d5a7ccb 100644 --- a/net/ruby-xmlrpc/Makefile +++ b/net/ruby-xmlrpc/Makefile @@ -34,7 +34,7 @@ post-patch: ${RUBY} -i -pe '$$_ = "FILES2 = []\n" if /^FILES2\s*=/' ${WRKSRC}/install.rb do-install: - cd ${WRKSRC} && ${RUBY} install.rb + cd ${WRKSRC}; ${RUBY} install.rb .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} ${CP} -R ${WRKSRC}/samples/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/ |