diff options
author | Alex Owen <r.alex.owen@gmail.com> | 2007-10-14 22:37:49 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:28 +0100 |
commit | 2ea3db43de9a673d3836d03521cc24590ca5ade2 (patch) | |
tree | 576ba32e3df8d6d1c30cf6a967115d2e76e2909e /helpers/lh_chroot_sources | |
parent | eb1e09d9e9415cd963efc03707422621edfd15b2 (diff) | |
download | vyos-live-build-2ea3db43de9a673d3836d03521cc24590ca5ade2.tar.gz vyos-live-build-2ea3db43de9a673d3836d03521cc24590ca5ade2.zip |
fix lh_chroot_sources to actually install *.deb from config/chroot_sources
Diffstat (limited to 'helpers/lh_chroot_sources')
-rwxr-xr-x | helpers/lh_chroot_sources | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 632daf6e7..f1bab8e9b 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -142,7 +142,7 @@ case "${1}" in for PACKAGE in config/chroot_sources/*.deb do cp ${PACKAGE} chroot/root - Chroot "dpkg -i $(basename ${PACKAGE})" + Chroot "dpkg -i /root/$(basename ${PACKAGE})" rm -f chroot/root/$(basename ${PACKAGE}) done fi |