mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-18 14:16:00 +08:00
* ltmain.in (libtool_args): Get all arguments properly enclosed in
quotes and backslash-protected when needed.
This commit is contained in:
parent
a7a4a73302
commit
02772c8400
@ -1,3 +1,8 @@
|
||||
1999-12-18 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
|
||||
|
||||
* ltmain.in (libtool_args): Get all arguments properly enclosed in
|
||||
quotes and backslash-protected when needed.
|
||||
|
||||
1999-12-16 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
|
||||
|
||||
* ltdl.m4: Renamed from...
|
||||
|
@ -728,7 +728,13 @@ compiler."
|
||||
while test $# -gt 0; do
|
||||
arg="$1"
|
||||
shift
|
||||
libtool_args="$libtool_args $arg"
|
||||
case "$arg" in
|
||||
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
|
||||
qarg=\"`echo "X$arg" | $Xsed -e "$sed_quote_subst"`\"
|
||||
;;
|
||||
*) qarg=$arg ;;
|
||||
esac
|
||||
libtool_args="$libtool_args $qarg"
|
||||
|
||||
# If the previous option needs an argument, assign it.
|
||||
if test -n "$prev"; then
|
||||
|
Loading…
Reference in New Issue
Block a user