diff options
author | Patrick 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) |
commit | e989132330af870bd35db583a8218c0d23fd7798 (patch) | |
tree | 18073049d0dd7b122a0f29720733517b1f6444fb /src | |
parent | f3577c43a4bb72b77795a41196eb3d7a1e603ad9 (diff) |
opkbuild: Join unnecessarily split lines
Diffstat (limited to 'src')
-rw-r--r-- | src/opkbuild.sh | 6 |
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}" } |