From 6929fad9d9f98b43330c6d5a0d6b13b34fa90dc2 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 8 Jun 2012 15:26:54 -0700 Subject: [PATCH] -device: Use $1 instead of $VAL $VAL just happens to work in resolveDeviceMkspec because it is set in the parent shell environment when the function is called. Change-Id: I67350f2a9e790cc7eca2a73ef6a4a0d7f09b8d3c Reviewed-by: Sean Harmer Reviewed-by: Oswald Buddenhagen --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index d2aa41c..13449ca 100755 --- a/configure +++ b/configure @@ -252,15 +252,15 @@ DeviceVar() resolveDeviceMkspec() { - result=$(find "$relpath/mkspecs/devices/" -type d -name "*$VAL*" | sed "s,^$relpath/mkspecs/,,") + result=$(find "$relpath/mkspecs/devices/" -type d -name "*$1*" | sed "s,^$relpath/mkspecs/,,") match_count=$(echo "$result" | wc -w) if [ "$match_count" -gt 1 ]; then - echo >&2 "Error: Multiple matches for device '$VAL'. Candidates are:" + echo >&2 "Error: Multiple matches for device '$1'. Candidates are:" tabbed_result=$(echo "$result" | sed "s,^, ,") echo >&2 "$tabbed_result" echo "undefined" elif [ "$match_count" -eq 0 ]; then - echo >&2 "Error: No device matching '$VAL'" + echo >&2 "Error: No device matching '$1'" echo "undefined" else echo "$result" -- 2.7.4