diff options
author | Daniel Baumann <daniel@debian.org> | 2010-12-05 14:06:12 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-12-05 14:06:12 +0100 |
commit | 78b95f094dd8b67d7a98d38c13197a093b8e5282 (patch) | |
tree | 4f2b6ae006cf22bd16ed79118aa287252283faa1 /functions | |
parent | 2e23222b3924d743b3948c44ae5acff8a3bd38f1 (diff) | |
download | vyos-live-build-78b95f094dd8b67d7a98d38c13197a093b8e5282.tar.gz vyos-live-build-78b95f094dd8b67d7a98d38c13197a093b8e5282.zip |
Passing chroot directory explicitly to Apt() in preparation for multi-arch.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/wrapper.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/functions/wrapper.sh b/functions/wrapper.sh index 3b8a67232..ab14a485e 100755 --- a/functions/wrapper.sh +++ b/functions/wrapper.sh @@ -10,13 +10,16 @@ Apt () { + CHROOT="${1}" + shift + case "${LB_APT}" in apt|apt-get) - Chroot chroot apt-get ${APT_OPTIONS} ${@} + Chroot ${CHROOT} apt-get ${APT_OPTIONS} ${@} ;; aptitude) - Chroot chroot aptitude ${APTITUDE_OPTIONS} ${@} + Chroot ${CHROOT} aptitude ${APTITUDE_OPTIONS} ${@} ;; esac } |