* vlc-config.in.in: Used printf instead of a sed construct, just in case

we reach 200 plugins one day, because Solaris (did I mention it sucked?)
    has a crap sed.
This commit is contained in:
Sam Hocevar 2003-07-01 16:34:22 +00:00
parent e2d69c725e
commit 1fb282c6ad
1 changed files with 8 additions and 5 deletions

View File

@ -243,17 +243,19 @@ if test "${echo_target}" = yes; then
for module in `echo "${plugins}"`; do
register_targets "${module}"
done
echo "${list}" | sed -e 's/[^ ][^ ]*/&_plugin/g'
for target in `echo ${list}`; do printf "${target}_plugin "; done
printf '\n'
fi
if test "${echo_builtin}"; then
for module in `echo "${builtins}"`; do
register_targets "${module}"
done
if test "${echo_pic}"; then
echo "${list}" | sed -e 's/[^ ][^ ]*/&_pic.a/g'
for target in `echo ${list}`; do printf "${target}_pic.a "; done
else
echo "${list}" | sed -e 's/[^ ][^ ]*/&.a/g'
for target in `echo ${list}`; do printf "${target}.a "; done
fi
printf '\n'
fi
exit 0
fi
@ -283,10 +285,11 @@ if test "${echo_libs}" = yes; then
register_flags "${module}"
done
if test "${echo_pic}"; then
libs="`echo "${list}" | sed -e 's/[^ ][^ ]*/&_pic.a/g'` ${libs}"
for target in `echo ${list}`; do printf "${target}_pic.a "; done
else
libs="`echo "${list}" | sed -e 's/[^ ][^ ]*/&.a/g'` ${libs}"
for target in `echo ${list}`; do printf "${target}.a "; done
fi
printf '\n'
fi
echo "${libs} ${ldflags}"
fi