diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-04-15 18:34:02 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:32 +0100 |
commit | cb88778a23473eb95e1cba7646bc7c2fa208e3ad (patch) | |
tree | 84f82659e5a5825570dc351b0bad422940cb6f9d /helpers/lh_chroot_local-packages | |
parent | b0a4988bb790cc77067d0877189a2e31c43de2a6 (diff) | |
download | vyos-live-build-cb88778a23473eb95e1cba7646bc7c2fa208e3ad.tar.gz vyos-live-build-cb88778a23473eb95e1cba7646bc7c2fa208e3ad.zip |
Fix quoting when installing local packages (Closes: #470683)
This was causing problems when building a package and there were binary
packages in the directory above 'config/'. See [0] and [1] for more info.
[0] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463406
[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476294
Diffstat (limited to 'helpers/lh_chroot_local-packages')
-rwxr-xr-x | helpers/lh_chroot_local-packages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_chroot_local-packages b/helpers/lh_chroot_local-packages index 953bef784..9c7ed36f0 100755 --- a/helpers/lh_chroot_local-packages +++ b/helpers/lh_chroot_local-packages @@ -59,7 +59,7 @@ then fi # Installing packages - Chroot "find /root -name *.deb" > chroot/root/local-packages + Chroot "find /root -name \\*.deb" > chroot/root/local-packages if [ -s chroot/root/local-packages ] then |