svn commit: r370905 - head/sysutils/cbsd

Veniamin Gvozdikov vg at FreeBSD.org
Wed Oct 15 11:31:40 UTC 2014


Author: vg
Date: Wed Oct 15 11:31:39 2014
New Revision: 370905
URL: https://svnweb.freebsd.org/changeset/ports/370905
QAT: https://qat.redports.org/buildarchive/r370905/

Log:
  - Fix Makefile by replacing asterisk in cp
  
  replace construction:
    cp SRCDIR/* DSTDIR
  to
    cp SRCDIR DSTDIR
  
  PR:		194357
  Submitted by:	olevole at olevole.ru (maintainer)

Modified:
  head/sysutils/cbsd/Makefile

Modified: head/sysutils/cbsd/Makefile
==============================================================================
--- head/sysutils/cbsd/Makefile	Wed Oct 15 11:25:50 2014	(r370904)
+++ head/sysutils/cbsd/Makefile	Wed Oct 15 11:31:39 2014	(r370905)
@@ -2,6 +2,7 @@
 
 PORTNAME=	cbsd
 PORTVERSION=	10.1.1
+PORTREVISION=	1
 CATEGORIES=	sysutils
 
 MAINTAINER=	olevole at olevole.ru
@@ -39,8 +40,8 @@ IGNORE=	does not support FreeBSD version
 do-install:
 	@${ECHO} "Installing in ${CBSD_HOME}"
 	${MKDIR} ${STAGEDIR}${CBSD_HOME}
-	${CP} -R ${WRKSRC}/* ${STAGEDIR}${CBSD_HOME}
-	@${INSTALL_MAN} ${WRKSRC}/man/cbsd.8 ${STAGEDIR}${PREFIX}/man/man8/cbsd.8
+	${CP} -a ${WRKSRC}/ ${STAGEDIR}${CBSD_HOME}
+	${INSTALL_MAN} ${WRKSRC}/man/cbsd.8 ${STAGEDIR}${PREFIX}/man/man8/cbsd.8
 	${INSTALL_PROGRAM} ${WRKSRC}/bin/cbsdsh/cbsd ${STAGEDIR}${PREFIX}/bin
 
 post-install:


More information about the svn-ports-all mailing list