diff options
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}" } |