diff options
author | jlam <jlam> | 2002-09-03 21:36:18 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-09-03 21:36:18 +0000 |
commit | 22d6b566550c8f72bb9ef82ce66753ffd21ec5bc (patch) | |
tree | 9c25404f7b63b49051fcc0f8999a9a44716f5a5f /mk | |
parent | 550fcb7ae8db604ea7a23894975a84c6943ad290 (diff) | |
download | pkgsrc-22d6b566550c8f72bb9ef82ce66753ffd21ec5bc.tar.gz |
Add a missing shell wildcard which was causing the expression to not
catch arguments with symbols that are special to the shell. This should
fix pkg/18156 by Matthias Scheler.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/buildlink2/post-cache | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/buildlink2/post-cache b/mk/buildlink2/post-cache index e69d198a9d3..d8e0fee615b 100644 --- a/mk/buildlink2/post-cache +++ b/mk/buildlink2/post-cache @@ -1,8 +1,8 @@ -# $NetBSD: post-cache,v 1.2 2002/08/22 08:21:29 jlam Exp $ +# $NetBSD: post-cache,v 1.3 2002/09/03 21:36:18 jlam Exp $ *) case $arg in - *[\`\"\$\\]) + *[\`\"\$\\]*) arg=`@ECHO@ X$arg | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") |