Browse Source

functions: changed pkginstalled() to use $* instead of "$@" when generating the pattern

karasz/new-early
Alejandro Mery 16 years ago
parent
commit
8b6545547a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/functions.in

+ 1
- 1
lib/functions.in

@ -558,7 +558,7 @@ pkginstalled() {
if [ $# -eq 1 ]; then
pattern="$1"
else
pattern="($@)"
pattern="($*)"
fi
pattern="${pattern//+/\\+}"

Loading…
Cancel
Save