Kaydet (Commit) 19ef1eb7 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

fix the IFS trick. the bashims removal broke that part

üst fe6ed1e8
......@@ -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/")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment