diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-03-16 14:42:17 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2002-03-16 14:42:17 +0000 |
commit | 28eca9e87b9e4b0f6f30fda48d2b550299b1cc4b (patch) | |
tree | 6014634dd70a30b8941f71b7f6981fa4229e5c7b | |
parent | b3124fac9bd98d0644ce645f513b354954b20c77 (diff) | |
download | gcc-28eca9e87b9e4b0f6f30fda48d2b550299b1cc4b.tar.gz |
* ltmain.sh (relink_command): Fix typo in previous change.
From-SVN: r50887
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ltmain.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index b49abaa617a..5e5722b5db5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-03-16 Alexandre Oliva <aoliva@redhat.com> + + * ltmain.sh (relink_command): Fix typo in previous change. + 2002-03-15 Alexandre Oliva <aoliva@redhat.com> * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it. diff --git a/ltmain.sh b/ltmain.sh index e9b2634d229..c3547e5a561 100644 --- a/ltmain.sh +++ b/ltmain.sh @@ -4305,7 +4305,7 @@ fi\ for tag in $taglist; do tagopts="$tagopts --tag $tag" done - relink_command="(cd `pwd`; $SHELL $0$tagopts --mode=relink $libtool_args" + relink_command="(cd `pwd`; $SHELL $0$tagopts --mode=relink $libtool_args)" relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` # Only create the output if not a dry run. |