summaryrefslogtreecommitdiffstats
path: root/src/opkbuild.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2018-12-25 18:01:13 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2018-12-25 18:01:13 (EST)
commite989132330af870bd35db583a8218c0d23fd7798 (patch)
tree18073049d0dd7b122a0f29720733517b1f6444fb /src/opkbuild.sh
parentf3577c43a4bb72b77795a41196eb3d7a1e603ad9 (diff)
opkbuild: Join unnecessarily split lines
Diffstat (limited to 'src/opkbuild.sh')
-rw-r--r--src/opkbuild.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/opkbuild.sh b/src/opkbuild.sh
index de69d5d..361a5f5 100644
--- a/src/opkbuild.sh
+++ b/src/opkbuild.sh
@@ -259,12 +259,10 @@ build_source()
print_arch_stats()
{
ob_info "$(ob_get_msg 'build_arch_stat_header')"
- ob_info "$(ob_get_msg 'arch_stat_arch')" \
- "${OPK_BUILD_ARCH}"
+ ob_info "$(ob_get_msg 'arch_stat_arch')" "${OPK_BUILD_ARCH}"
ob_info "$(ob_get_msg 'arch_stat_plat')" "${OPK_BUILD_PLAT}"
ob_info "$(ob_get_msg 'host_arch_stat_header')"
- ob_info "$(ob_get_msg 'arch_stat_arch')" \
- "${OPK_HOST_ARCH}"
+ ob_info "$(ob_get_msg 'arch_stat_arch')" "${OPK_HOST_ARCH}"
ob_info "$(ob_get_msg 'arch_stat_plat')" "${OPK_HOST_PLAT}"
}