diff options
author | Daniel Baumann <daniel@debian.org> | 2008-08-31 21:15:28 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:40 +0100 |
commit | 45a98f5977ecea130f332759821b1052f8b9a0a9 (patch) | |
tree | ae95dff5b6a97db8c6bd36726a7b05600dd2a14b | |
parent | cdc9a34f7cbaf4c0501663b5cd73b95e763e0d46 (diff) | |
download | vyos-live-build-45a98f5977ecea130f332759821b1052f8b9a0a9.tar.gz vyos-live-build-45a98f5977ecea130f332759821b1052f8b9a0a9.zip |
Correcting chroot call to process config/binary_rootfs/excludes in chrooted builds.
-rwxr-xr-x | helpers/lh_binary_rootfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_binary_rootfs b/helpers/lh_binary_rootfs index 387bf8096..419b264da 100755 --- a/helpers/lh_binary_rootfs +++ b/helpers/lh_binary_rootfs @@ -94,7 +94,7 @@ then if [ -f config/binary_rootfs/excludes ] then cp config/binary_rootfs/excludes chroot/chroot/excludes - Chroot chroot/chroot "cat /excludes | xargs rm -rf" + chroot chroot/chroot /usr/bin/env -i xargs --arg-file=/excludes rm -rf rm -f chroot/chroot/excludes fi |