summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-03-31 11:12:58 +1000
committerDan McGee <dan@archlinux.org>2011-03-30 20:43:36 -0500
commita164c8405a0fb08cc7783d51796fbb76d0e4f493 (patch)
tree46ed0888fdc2046ebb79870efda13c21bb473f80 /scripts
parent541c2470b8ad8c1c0c925d2474da44384b5d7d66 (diff)
downloadpacman-a164c8405a0fb08cc7783d51796fbb76d0e4f493.tar.gz
pacman-a164c8405a0fb08cc7783d51796fbb76d0e4f493.zip
makepkg: remove unnecessary tr usage
The use of "tr" only leads to trouble. Remove unnecessary usage of it from within makepkg. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makepkg.sh.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index dcc32343..193a1853 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -286,11 +286,10 @@ check_buildenv() {
# ? - not found
##
in_opt_array() {
- local needle=$(tr '[:upper:]' '[:lower:]' <<< $1); shift
+ local needle=$1; shift
local opt
for opt in "$@"; do
- opt=$(tr '[:upper:]' '[:lower:]' <<< $opt)
if [[ $opt = $needle ]]; then
echo 'y' # Enabled
return
@@ -578,7 +577,6 @@ generate_checksums() {
local integ
for integ in ${integlist[@]}; do
- integ=$(tr '[:upper:]' '[:lower:]' <<< "$integ")
case "$integ" in
md5|sha1|sha256|sha384|sha512) : ;;
*)