diff options
author | tnn <tnn@pkgsrc.org> | 2008-05-17 18:52:17 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-05-17 18:52:17 +0000 |
commit | 68653acbca096d6869ae72549a49f0f9bbbef039 (patch) | |
tree | f15b07e0c88062735e3480aa22404a56c354ee91 | |
parent | a62afabe143a25fb0d3897aa97b5e1362017b920 (diff) | |
download | pkgsrc-68653acbca096d6869ae72549a49f0f9bbbef039.tar.gz |
Fix shell pattern so it doesn't try to copy the "CVS" directory when
the shell is bash and nocaseglob is enabled (ugh, misfeature).
PR pkg/38671.
-rw-r--r-- | graphics/Mesa/Makefile.lib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/Mesa/Makefile.lib b/graphics/Mesa/Makefile.lib index 8d11920ba37..cd510381df5 100644 --- a/graphics/Mesa/Makefile.lib +++ b/graphics/Mesa/Makefile.lib @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.lib,v 1.10 2008/04/30 07:09:48 bjs Exp $ +# $NetBSD: Makefile.lib,v 1.11 2008/05/17 18:52:17 tnn Exp $ # # This Makefile fragment is included by all packages that build libraries # from the Mesa sources. @@ -66,7 +66,7 @@ pre-patch: done post-patch: - ${CP} ${.CURDIR}/../MesaLib/files/configs/[a-z]* ${WRKSRC}/configs + ${CP} ${.CURDIR}/../MesaLib/files/configs/[d-z]* ${WRKSRC}/configs post-install: install-headers |