fix the IFS trick. the bashims removal broke that part
This commit is contained in:
parent
fe6ed1e8bf
commit
19ef1eb7a7
1 changed files with 2 additions and 1 deletions
|
@ -54,7 +54,8 @@ distro_name=$(distro "$@")
|
|||
if test "z${distro_name}" != "z" ; then
|
||||
cumul=""
|
||||
if test -f "./distro-configs/${distro_name}.conf" ; then
|
||||
IFS="$(printf '\n')"
|
||||
IFS=$'
|
||||
'
|
||||
for opt in $(cat distro-configs/${distro_name}.conf) ; do cumul="$cumul $opt" ; done ;
|
||||
unset IFS
|
||||
conf_args=$(requote "$@" | sed -e "s/'--with-distro=[^']*'/$cumul/")
|
||||
|
|
Loading…
Reference in a new issue