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 /security/p5-Net-SAML | |
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 'security/p5-Net-SAML')
-rw-r--r-- | security/p5-Net-SAML/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/p5-Net-SAML/Makefile b/security/p5-Net-SAML/Makefile index 8cd8c649874c..5d410fffc1d7 100644 --- a/security/p5-Net-SAML/Makefile +++ b/security/p5-Net-SAML/Makefile @@ -29,8 +29,8 @@ post-patch: post-install: .if !defined(NOPORTEXAMPLES) - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ - cd ${WRKSRC}/../ && ${INSTALL_SCRIPT} zxid.pl zxidhlo.pl ${STAGEDIR}${EXAMPLESDIR}/ + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/.. && ${INSTALL_SCRIPT} zxid.pl zxidhlo.pl ${STAGEDIR}${EXAMPLESDIR}) .endif .include <bsd.port.mk> |