remove some unwanted quoting of list parameters

there are additional instances in binary_* scripts that are left here
because they are covered by changes in MR #157

Gbp-Dch: Short
This commit is contained in:
Lyndon Brown 2020-04-01 10:04:19 +01:00 committed by Raphaël Hertzog
parent 11836c0c18
commit 8c0e802d13
4 changed files with 5 additions and 7 deletions

View File

@ -71,7 +71,7 @@ then
else
for _ARCHIVE_AREA in ${LB_ARCHIVE_AREAS}
do
if ! In_list ${_ARCHIVE_AREA} "${LB_PARENT_ARCHIVE_AREAS}"
if ! In_list ${_ARCHIVE_AREA} ${LB_PARENT_ARCHIVE_AREAS}
then
DERIVATIVE_ARCHIVE_AREAS="${DERIVATIVE_ARCHIVE_AREAS} ${_ARCHIVE_AREA}"
fi

View File

@ -355,7 +355,7 @@ then
else
for _ARCHIVE_AREA in ${LB_ARCHIVE_AREAS}
do
if ! In_list ${_ARCHIVE_AREA} "${LB_PARENT_ARCHIVE_AREAS}"
if ! In_list ${_ARCHIVE_AREA} ${LB_PARENT_ARCHIVE_AREAS}
then
DERIVATIVE_ARCHIVE_AREAS="${DERIVATIVE_ARCHIVE_AREAS} ${DERIVATIVE_ARCHIVE_AREAS}"
fi
@ -541,7 +541,7 @@ EOF
done
for _UDEB in ${UDEBS}
do
if ! In_list "$(basename ${_UDEB} | awk -F_ '{ print $1 }')" "${_UDEBS_DERIVED_NAMES}"
if ! In_list "$(basename ${_UDEB} | awk -F_ '{ print $1 }')" ${_UDEBS_DERIVED_NAMES}
then
_UDEBS_FILTERED="${_UDEBS_FILTERED} ${_UDEB}"
fi

View File

@ -26,8 +26,7 @@ then
exit 0
fi
if ! In_list hdd "${LB_SOURCE_IMAGES}"
then
if ! In_list hdd ${LB_SOURCE_IMAGES}; then
exit 0
fi

View File

@ -26,8 +26,7 @@ then
exit 0
fi
if ! In_list tar "${LB_SOURCE_IMAGES}"
then
if ! In_list tar ${LB_SOURCE_IMAGES}; then
exit 0
fi