From: Mumit Khan Date: Thu, 29 Jul 1999 22:58:41 +0000 (+0000) Subject: * ltconfig.in: Read line at a time to avoid tokenisation by X-Git-Tag: multi-language-fork~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48dc53d227b60ac80e4c6c405e6d0f61267a0b1c;p=thirdparty%2Flibtool.git * ltconfig.in: Read line at a time to avoid tokenisation by shell. --- diff --git a/ChangeLog b/ChangeLog index 72997d77a..4be4e7d97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-07-30 Mumit Khan + + * ltconfig.in: Read line at a time to avoid tokenisation by + shell. + 1999-07-29 Alexandre Oliva * ltmain.in: Fix creation of relative links to object files in diff --git a/ltconfig.in b/ltconfig.in index 6e4b84bdf..eec2ee92b 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1389,7 +1389,7 @@ EOF archive_expsym_cmds='echo EXPORTS > $objdir/$soname-def~ _lt_hint=1; - for symbol in `cat $export_symbols`; do + cat $export_symbols | while read symbol; do echo " \$symbol @ \$_lt_hint ; " >> $objdir/$soname-def; _lt_hint=`expr 1 + \$_lt_hint`; done~