diff options
author | tijl <tijl@FreeBSD.org> | 2013-07-15 23:48:15 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2013-07-15 23:48:15 +0800 |
commit | f5a1e09df969e84e7032ba008cc7d7f3d5783e7a (patch) | |
tree | b9abacb49e9d1c8427f78322cec27be17b96f932 /audio/mbrolavox | |
parent | 918a6b84d925fb2dbf48822255e210409e61ec33 (diff) | |
download | freebsd-ports-gnome-f5a1e09df969e84e7032ba008cc7d7f3d5783e7a.tar.gz freebsd-ports-gnome-f5a1e09df969e84e7032ba008cc7d7f3d5783e7a.tar.zst freebsd-ports-gnome-f5a1e09df969e84e7032ba008cc7d7f3d5783e7a.zip |
Fix use of COPYTREE_SHARE. (Shell pattern meta-characters must be escaped.)
Diffstat (limited to 'audio/mbrolavox')
-rw-r--r-- | audio/mbrolavox/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/mbrolavox/Makefile b/audio/mbrolavox/Makefile index 4567b8a052c1..9f1c37540b8b 100644 --- a/audio/mbrolavox/Makefile +++ b/audio/mbrolavox/Makefile @@ -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 |