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 Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
parent
84612231f6
commit
8f39f474b7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue