Date: Mon, 15 Jul 2013 15:48:16 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323062 - head/audio/mbrolavox Message-ID: <201307151548.r6FFmGxd052009@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tijl Date: Mon Jul 15 15:48:15 2013 New Revision: 323062 URL: http://svnweb.freebsd.org/changeset/ports/323062 Log: Fix use of COPYTREE_SHARE. (Shell pattern meta-characters must be escaped.) Modified: head/audio/mbrolavox/Makefile Modified: head/audio/mbrolavox/Makefile ============================================================================== --- head/audio/mbrolavox/Makefile Mon Jul 15 15:30:26 2013 (r323061) +++ head/audio/mbrolavox/Makefile Mon Jul 15 15:48:15 2013 (r323062) @@ -44,8 +44,7 @@ do-extract: .endfor do-install: - @${MKDIR} ${DATADIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} * ${DATADIR}/ + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${DATADIR} # Generates OPTIONS file from voices.conf -- really for maintainer use # Only included for compatibility with anyone who wants to modify voices.conf
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307151548.r6FFmGxd052009>