summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Lindholm <leif.lindholm@linaro.org>2016-09-15 20:25:55 +0100
committerLeif Lindholm <leif.lindholm@linaro.org>2016-09-15 20:25:55 +0100
commit17be6e90054d5accf6522bcd0676d29b9a5f310e (patch)
tree770511838ee00f335a0a05e92b456ff9ae88d1f6
parent8c9b314ed385161fe9b6197a2e2780f0a0c63472 (diff)
uefi-build.sh: fix handling of absolute paths to external platform config
*cough* guess that was never tested. Extra quotation marks messed up using an external platform configuration file if it was specified with an absolute path. Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
-rwxr-xr-xuefi-build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/uefi-build.sh b/uefi-build.sh
index 635e1de..e57c78c 100755
--- a/uefi-build.sh
+++ b/uefi-build.sh
@@ -191,7 +191,7 @@ do
fi
case "$FILE_ARG" in
/*)
- PLATFORM_CONFIG="-c \"$FILE_ARG\""
+ PLATFORM_CONFIG="-c $FILE_ARG"
;;
*)
PLATFORM_CONFIG="-c `readlink -f \"$FILE_ARG\"`"