summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index d2aa41ccd8..13449ca2c9 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"