diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-12-03 18:36:33 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-12-03 18:36:33 (EST) |
commit | 54379ea45c663dcc341343751206ccb583fefc41 (patch) | |
tree | bfb3ac52dbb37af97dfe7d999bbdad92177e3b86 /lib/cmd | |
parent | fd78b0f39a4a9d36ead598a1a6c2fa4d511bf2d2 (diff) |
profile_configure_system_*(): Pass arch and plat
Diffstat (limited to 'lib/cmd')
-rw-r--r-- | lib/cmd/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cmd/install.sh b/lib/cmd/install.sh index d115b9c..ac817e0 100644 --- a/lib/cmd/install.sh +++ b/lib/cmd/install.sh @@ -113,9 +113,9 @@ cmd_install_main() info "$(get_msg 'cmd_install_configuring')" if ! ${foreign}; then - profile_configure_system_native "${chroot}" + profile_configure_system_native "${chroot}" "${arch}" "${plat}" else - profile_configure_system_foreign "${chroot}" + profile_configure_system_foreign "${chroot}" "${arch}" "${plat}" fi rm "${chroot}/prokit/installing" |