svn commit: r465835 - head/ports-mgmt/poudriere-devel

Joseph Mingrone jrm at FreeBSD.org
Wed Mar 28 18:38:21 UTC 2018


Author: jrm
Date: Wed Mar 28 18:38:20 2018
New Revision: 465835
URL: https://svnweb.freebsd.org/changeset/ports/465835

Log:
  ports-mgmt/poudriere-devel: Fix plist issue with completion options

Modified:
  head/ports-mgmt/poudriere-devel/Makefile   (contents, props changed)

Modified: head/ports-mgmt/poudriere-devel/Makefile
==============================================================================
--- head/ports-mgmt/poudriere-devel/Makefile	Wed Mar 28 18:35:43 2018	(r465834)
+++ head/ports-mgmt/poudriere-devel/Makefile	Wed Mar 28 18:38:20 2018	(r465835)
@@ -63,13 +63,13 @@ post-install:
 	    ${STAGEDIR}${DATADIR}/MANIFESTS
 
 post-install-BASH-on:
-	@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
-	${INSTALL_DATA} ${WRKSRC}/completions/zsh/_poudriere \
-	    ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
-
-post-install-ZSH-on:
 	@${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions/
 	${INSTALL_DATA} ${WRKSRC}/completions/bash/poudriere \
 	    ${STAGEDIR}${PREFIX}/share/bash-completion/completions/
+
+post-install-ZSH-on:
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
+	${INSTALL_DATA} ${WRKSRC}/completions/zsh/_poudriere \
+	    ${STAGEDIR}${PREFIX}/share/zsh/site-functions/
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list