From cb7809fc83cacb87cb8efa66f272fa3eda94390e Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Thu, 10 Jul 2008 00:24:07 +0100 Subject: Replace spaces in LH_BOOTSTRAP_{IN,EX}CLUDE variables with commas on use. Thanks to Cyril Brulebois . (Closes: #490114) --- helpers/lh_bootstrap_cdebootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'helpers/lh_bootstrap_cdebootstrap') diff --git a/helpers/lh_bootstrap_cdebootstrap b/helpers/lh_bootstrap_cdebootstrap index df006e3ce..61683dde0 100755 --- a/helpers/lh_bootstrap_cdebootstrap +++ b/helpers/lh_bootstrap_cdebootstrap @@ -69,12 +69,12 @@ fi if [ -n "${LH_BOOTSTRAP_INCLUDE}" ] then - CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --include=${LH_BOOTSTRAP_INCLUDE}" + CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --include=$(echo ${LH_BOOTSTRAP_INCLUDE} | sed 's| *|,|g')" fi if [ -n "${LH_BOOTSTRAP_EXCLUDE}" ] then - CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --exclude=${LH_BOOTSTRAP_EXCLUDE}" + CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --exclude=$(echo ${LH_BOOTSTRAP_EXCLUDE} | sed 's| *|,|g')" fi if [ -n "${LH_BOOTSTRAP_KEYRING}" ] -- cgit v1.2.3