aboutsummaryrefslogtreecommitdiff
path: root/projects/depthcharge
diff options
context:
space:
mode:
authorAndrew Robbins <contact@andrewrobbins.info>2017-10-26 21:45:42 -0400
committerAndrew Robbins <contact@andrewrobbins.info>2017-10-28 23:30:03 -0400
commit5c1fe562d8044249f5830df826544bc72ecb41b2 (patch)
treee86f14dfddc867e8a8abdfa31713edcc2cf87c3d /projects/depthcharge
parentc7377e3eb74a73874f9d2253083b3ae952156ac8 (diff)
downloadlibrebootfr-5c1fe562d8044249f5830df826544bc72ecb41b2.tar.gz
librebootfr-5c1fe562d8044249f5830df826544bc72ecb41b2.zip
Remove unnecessary spaces in command substitutions
This is likely one of the very last changes necessary to make the Libreboot build system more cohesive in appearance. Hopefully from this point forward it won't be as readily apparent as to who wrote which parts of the build system (i.e. won't look like a patchwork quilt any longer).
Diffstat (limited to 'projects/depthcharge')
-rwxr-xr-xprojects/depthcharge/depthcharge12
1 files changed, 6 insertions, 6 deletions
diff --git a/projects/depthcharge/depthcharge b/projects/depthcharge/depthcharge
index fe64c7d9..966b9689 100755
--- a/projects/depthcharge/depthcharge
+++ b/projects/depthcharge/depthcharge
@@ -66,15 +66,15 @@ build() {
git_project_checkout "$project" "$repository" "$@"
fi
- local sources_path=$( project_sources_path "$project" "$repository" "$@" )
- local build_path=$( project_build_path "$project" "$@" )
+ local sources_path=$(project_sources_path "$project" "$repository" "$@")
+ local build_path=$(project_build_path "$project" "$@")
- local libpayload_build_path=$( project_build_path "libpayload" "$project" "$@" )
+ local libpayload_build_path=$(project_build_path "libpayload" "$project" "$@")
local libpayload_build_install_path="$libpayload_build_path/install"
- local vboot_sources_path=$( project_sources_path "vboot" "vboot" "devices" )
+ local vboot_sources_path=$(project_sources_path "vboot" "vboot" "devices")
- local arch=$( depthcharge_arch "$@" )
- local device=$( depthcharge_device "$@" )
+ local arch=$(depthcharge_arch "$@")
+ local device=$(depthcharge_device "$@")
project_action_arguments "checkout" "vboot" "devices"