diff options
author | mat <mat@FreeBSD.org> | 2013-11-25 01:40:44 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2013-11-25 01:40:44 +0800 |
commit | 636603b4256acd6500e9ea55ddd74f51e9ed605d (patch) | |
tree | f9d8301a9f6d3b115d6bf94c75a45e2ab5278877 /devel | |
parent | c9f522e23f02154df2d9ac4a762e4f63f9333137 (diff) | |
download | freebsd-ports-gnome-636603b4256acd6500e9ea55ddd74f51e9ed605d.tar.gz freebsd-ports-gnome-636603b4256acd6500e9ea55ddd74f51e9ed605d.tar.zst freebsd-ports-gnome-636603b4256acd6500e9ea55ddd74f51e9ed605d.zip |
- Wrap up cd && foo in parenthesis, it'd break with bmake -j
- Replace some FIND ... CPIO with COPYTREE_SHARE.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-DateTime-Event-Recurrence/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-DateTime-Format-Builder/Makefile | 6 | ||||
-rw-r--r-- | devel/p5-DateTime-Set/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Event/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Log-Dispatch/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Module-Build/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-MooseX-Log-Log4perl/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Params-Check/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Path-Class/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Proc-ProcessTable/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Set-Infinite/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Spiffy/Makefile | 4 | ||||
-rw-r--r-- | devel/p5-Time-Local/Makefile | 4 |
13 files changed, 24 insertions, 24 deletions
diff --git a/devel/p5-DateTime-Event-Recurrence/Makefile b/devel/p5-DateTime-Event-Recurrence/Makefile index eded8c1918ae..f128db02eab7 100644 --- a/devel/p5-DateTime-Event-Recurrence/Makefile +++ b/devel/p5-DateTime-Event-Recurrence/Makefile @@ -25,8 +25,8 @@ PORTDOCS= CREDITS Changes README TODO post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif diff --git a/devel/p5-DateTime-Format-Builder/Makefile b/devel/p5-DateTime-Format-Builder/Makefile index cfe370380fdc..a4be2ea80096 100644 --- a/devel/p5-DateTime-Format-Builder/Makefile +++ b/devel/p5-DateTime-Format-Builder/Makefile @@ -31,12 +31,12 @@ PORTEXAMPLES= Apache.pm Fall.pm ICal.pm MySQL.pm Simple.pm Tivoli.pm W3CDTF.pm post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/examples/ && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ + (cd ${WRKSRC}/examples && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-DateTime-Set/Makefile b/devel/p5-DateTime-Set/Makefile index 089aa5f89bc0..9b81cc163a93 100644 --- a/devel/p5-DateTime-Set/Makefile +++ b/devel/p5-DateTime-Set/Makefile @@ -27,8 +27,8 @@ PORTDOCS= Changes README TODO post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif diff --git a/devel/p5-Event/Makefile b/devel/p5-Event/Makefile index 61ebf23c7b65..6504bccd9ba6 100644 --- a/devel/p5-Event/Makefile +++ b/devel/p5-Event/Makefile @@ -21,8 +21,8 @@ PORTDOCS= ANNOUNCE ChangeLog INSTALL MANIFEST README TODO Tutorial.pdf post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Log-Dispatch/Makefile b/devel/p5-Log-Dispatch/Makefile index 7f18a2108a59..1f33b7ec7598 100644 --- a/devel/p5-Log-Dispatch/Makefile +++ b/devel/p5-Log-Dispatch/Makefile @@ -55,8 +55,8 @@ RUN_DEPENDS+= p5-Mail-Sendmail>=0:${PORTSDIR}/mail/p5-Mail-Sendmail post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Module-Build/Makefile b/devel/p5-Module-Build/Makefile index 6c4134b734ea..8b6d3f4a8f14 100644 --- a/devel/p5-Module-Build/Makefile +++ b/devel/p5-Module-Build/Makefile @@ -49,8 +49,8 @@ post-patch: post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif diff --git a/devel/p5-MooseX-Log-Log4perl/Makefile b/devel/p5-MooseX-Log-Log4perl/Makefile index dac8136be061..51f3280146c8 100644 --- a/devel/p5-MooseX-Log-Log4perl/Makefile +++ b/devel/p5-MooseX-Log-Log4perl/Makefile @@ -24,6 +24,6 @@ post-patch: ${WRKSRC}/Makefile.PL regression-test: build - cd ${WRKSRC}/ && ${MAKE} test + cd ${WRKSRC} && ${MAKE} test .include <bsd.port.mk> diff --git a/devel/p5-Params-Check/Makefile b/devel/p5-Params-Check/Makefile index 31b9d0a60936..5fb9cc6318d7 100644 --- a/devel/p5-Params-Check/Makefile +++ b/devel/p5-Params-Check/Makefile @@ -22,8 +22,8 @@ PORTDOCS= CHANGES post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Path-Class/Makefile b/devel/p5-Path-Class/Makefile index 8aeadd3955bd..e34e1ec465ae 100644 --- a/devel/p5-Path-Class/Makefile +++ b/devel/p5-Path-Class/Makefile @@ -26,7 +26,7 @@ PORTDOCS= Changes README post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Proc-ProcessTable/Makefile b/devel/p5-Proc-ProcessTable/Makefile index e32d78b6adc4..6da94d86d3ee 100644 --- a/devel/p5-Proc-ProcessTable/Makefile +++ b/devel/p5-Proc-ProcessTable/Makefile @@ -19,7 +19,7 @@ PORTDOCS= README README.freebsd-kvm README.freebsd-procfs .if !defined(NOPORTDOCS) post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Set-Infinite/Makefile b/devel/p5-Set-Infinite/Makefile index 4368fdfbbd2a..47cbc81f23dc 100644 --- a/devel/p5-Set-Infinite/Makefile +++ b/devel/p5-Set-Infinite/Makefile @@ -21,8 +21,8 @@ PORTDOCS= Changes README TODO post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Spiffy/Makefile b/devel/p5-Spiffy/Makefile index 3c6cce8182a9..fe5e82418b50 100644 --- a/devel/p5-Spiffy/Makefile +++ b/devel/p5-Spiffy/Makefile @@ -25,8 +25,8 @@ PORTDOCS= Changes README post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.mk> diff --git a/devel/p5-Time-Local/Makefile b/devel/p5-Time-Local/Makefile index 831634e10614..9fac86b791c1 100644 --- a/devel/p5-Time-Local/Makefile +++ b/devel/p5-Time-Local/Makefile @@ -25,8 +25,8 @@ PORTDOCS= Changes post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .endif .include <bsd.port.post.mk> |