Escaping quotes to workaround a false-positive of checkbashisms in binary_debian-installer.

This commit is contained in:
Daniel Baumann 2013-01-24 00:08:00 +01:00 committed by Daniel Baumann
parent a2f728280b
commit 4d95bc6e79
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ then
# Drop the packages already installed that d-i doesn't explicitely need
_REMAINING_PACKAGES="$(echo ${DI_FIRMWARE_PACKAGES} ${DI_REQ_PACKAGES} | sed -e 's# #|#g')"
_REMAINING_PACKAGES="$(sed -n -e 's|Package: ||p' chroot/var/lib/dpkg/status.tmp | grep -E -v "^${_REMAINING_PACKAGES}$")"
_REMAINING_PACKAGES="$(sed -n -e 's|Package: ||p' chroot/var/lib/dpkg/status.tmp | grep -E -v \"^${_REMAINING_PACKAGES}$\")"
for _PACKAGE in ${_REMAINING_PACKAGES}
do