cd dir && command -> cd dir; command
This commit is contained in:
parent
d516b6cfe4
commit
48775a7604
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56945
4 changed files with 7 additions and 7 deletions
|
@ -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:
|
||||
|
|
|
@ -22,7 +22,7 @@ LIB_DEPENDS= SDL-1.1.3:${PORTSDIR}/devel/sdl12 \
|
|||
SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer
|
||||
|
||||
RUBY_OPENGL_PORTDIR= ${.CURDIR}/../../graphics/ruby-opengl
|
||||
RUBY_OPENGL_WRKSRC_CMD= cd ${RUBY_OPENGL_PORTDIR} && ${MAKE} -V WRKSRC
|
||||
RUBY_OPENGL_WRKSRC_CMD= cd ${RUBY_OPENGL_PORTDIR}; ${MAKE} -V WRKSRC
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBY_EXTCONF= yes
|
||||
|
@ -54,7 +54,7 @@ post-patch:
|
|||
post-build:
|
||||
.if !defined(NOPORTDOCS)
|
||||
.for f in ${RD_DOCS_EN} ${RD_DOCS_JA}
|
||||
@cd ${WRKSRC} && ${RUBY_RD} ${f} > ${f:S/.rd$/.html/}
|
||||
@cd ${WRKSRC}; ${RUBY_RD} ${f} > ${f:S/.rd$/.html/}
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ DOCS= sysvipc.html sysvipc.rd
|
|||
|
||||
post-build:
|
||||
.if !defined(NOPORTDOCS)
|
||||
cd ${WRKSRC} && ${RUBY_RD} sysvipc.rd > sysvipc.html
|
||||
cd ${WRKSRC}; ${RUBY_RD} sysvipc.rd > sysvipc.html
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
|
|
|
@ -24,7 +24,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
|
|||
|
||||
do-build:
|
||||
.if !defined(NOPORTDOCS)
|
||||
cd ${WRKSRC} && ${RUBY_RD} tzfile.rb > tzfile.html
|
||||
cd ${WRKSRC}; ${RUBY_RD} tzfile.rb > tzfile.html
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
|
|
Loading…
Reference in a new issue