From 48dc53d227b60ac80e4c6c405e6d0f61267a0b1c Mon Sep 17 00:00:00 2001 From: Mumit Khan Date: Thu, 29 Jul 1999 22:58:41 +0000 Subject: [PATCH] * ltconfig.in: Read line at a time to avoid tokenisation by shell. --- ChangeLog | 5 +++++ ltconfig.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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~ -- 2.47.3