summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Owen <r.alex.owen@gmail.com>2007-10-14 22:37:49 +0100
committerOtavio Salvador <otavio@ossystems.com.br>2007-10-28 18:22:33 -0200
commitc71e0d5517c7028060c8d50bb6b426b6ff1469ae (patch)
tree576ba32e3df8d6d1c30cf6a967115d2e76e2909e
parentb01e3ff7695f039426e590c95b9d3af936bbe2c8 (diff)
downloadvyos-live-build-c71e0d5517c7028060c8d50bb6b426b6ff1469ae.tar.gz
vyos-live-build-c71e0d5517c7028060c8d50bb6b426b6ff1469ae.zip
fix lh_chroot_sources to actually install *.deb from config/chroot_sources
-rwxr-xr-xhelpers/lh_chroot_sources2
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