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 /textproc/ruby-nqxml | |
parent | Correcting some problems in the control script (diff) |
cd dir && command -> cd dir; command
Notes
Notes:
svn path=/head/; revision=56942
Diffstat (limited to 'textproc/ruby-nqxml')
-rw-r--r-- | textproc/ruby-nqxml/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/ruby-nqxml/Makefile b/textproc/ruby-nqxml/Makefile index dbe75f3113d9..fbfa490a7905 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}/ |