From 17be6e90054d5accf6522bcd0676d29b9a5f310e Mon Sep 17 00:00:00 2001 From: Leif Lindholm Date: Thu, 15 Sep 2016 20:25:55 +0100 Subject: 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 --- uefi-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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\"`" -- cgit v1.2.3