summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndres P <aepd87@gmail.com>2010-06-26 01:16:45 +0200
committerDan McGee <dan@archlinux.org>2010-06-30 15:27:29 +0200
commit8b23aa172f6229dd82c381704d4802d9747e118b (patch)
treeabb7bcba68753dce4d1a7926a7c945d8d40cf508
parentd7c98d4e45f614495399636bf02bc718e4a90ab8 (diff)
downloadpacman-8b23aa172f6229dd82c381704d4802d9747e118b.tar.gz
pacman-8b23aa172f6229dd82c381704d4802d9747e118b.tar.xz
makepkg: remove bash4-only parameter expansion in check_sanity
Signed-off-by: Andres P <aepd87@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index c4c9866c..6ad83f0b 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1250,7 +1250,7 @@ check_sanity() {
# evaluate any bash variables used
eval file=${file}
if [[ ! -f $file ]]; then
- error "$(gettext "%s file (%s) does not exist.")" "${i^}" "$file"
+ error "$(gettext "%s file (%s) does not exist.")" "$i" "$file"
return 1
fi
done