diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-10-26 21:45:42 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-10-28 23:30:03 -0400 |
commit | 5c1fe562d8044249f5830df826544bc72ecb41b2 (patch) | |
tree | e86f14dfddc867e8a8abdfa31713edcc2cf87c3d /projects/cros-ec | |
parent | c7377e3eb74a73874f9d2253083b3ae952156ac8 (diff) | |
download | librebootfr-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/cros-ec')
-rwxr-xr-x | projects/cros-ec/cros-ec | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/projects/cros-ec/cros-ec b/projects/cros-ec/cros-ec index be7aa62b..ba03bd56 100755 --- a/projects/cros-ec/cros-ec +++ b/projects/cros-ec/cros-ec @@ -63,8 +63,8 @@ build() { project_sources_directory_missing_empty_error "$project" "$repository" "$@" - 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" "$@") if git_project_check "$repository" then @@ -79,9 +79,9 @@ build() { else local arch="arm" - local config=$( cros_ec_config "$@" ) + local config=$(cros_ec_config "$@") - local crossgcc_bin_prefix=$( project_action_arguments "prefix" "crossgcc" "$arch" ) + local crossgcc_bin_prefix=$(project_action_arguments "prefix" "crossgcc" "$arch") make -C "$sources_path" out="$build_path" CROSS_COMPILE="$crossgcc_bin_prefix" HOST_CROSS_COMPILE= BOARD="$config" -j$TASKS fi |