diff options
author | Daniel Baumann <daniel@debian.org> | 2008-04-17 06:48:08 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-04-17 06:51:40 +0200 |
commit | bd76f9940bde6cc31f4a29d4f1d2345763c63ab5 (patch) | |
tree | f7c0a00085c4afc559ea134acbf509ce8cb9af42 | |
parent | bb6b5e1249a274b45a4ddea5c5554adb176ccb9f (diff) | |
download | vyos-live-build-bd76f9940bde6cc31f4a29d4f1d2345763c63ab5.tar.gz vyos-live-build-bd76f9940bde6cc31f4a29d4f1d2345763c63ab5.zip |
Using hardlinks to copy local packages into chroot.
-rwxr-xr-x | helpers/lh_chroot_sources | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 0dc3d76d7..154a224a5 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -86,12 +86,12 @@ case "${1}" in # Copy packages if ls config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb > /dev/null 2>&1 then - cp config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb chroot/root/local-packages + cp -l config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb chroot/root/local-packages fi if ls config/chroot_local-packages/*_all.deb > /dev/null 2>&1 then - cp config/chroot_local-packages/*_all.deb chroot/root/local-packages + cp -l config/chroot_local-packages/*_all.deb chroot/root/local-packages fi if ls chroot/root/local-packages/*.deb > /dev/null 2>&1 |