Skip to content

Commit

Permalink
2008-05-14 Rafael Espindola <espindola@google.com>
Browse files Browse the repository at this point in the history
	* config-ml.in: don't handle --enable-shared and --enable-static.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135300 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
espindola committed May 14, 2008
1 parent 2dd6f9e commit 2c3fa25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2008-05-14 Rafael Espindola <espindola@google.com>

* config-ml.in: don't handle --enable-shared and --enable-static.

2008-05-10 Richard Sandiford <rdsandiford@googlemail.com>

* MAINTAINERS: Update my email address.
Expand Down
7 changes: 6 additions & 1 deletion config-ml.in
Expand Up @@ -135,7 +135,12 @@ do
*) optarg=yes ;;
esac
enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
eval $enableopt="$optarg"
# enable_shared and enable_static are handled by configure.
# Don't undo its work.
case $enableopt in
enable_shared | enable_static) ;;
*) eval $enableopt="$optarg" ;;
esac
;;
--norecursion | --no-recursion)
ml_norecursion=yes
Expand Down

0 comments on commit 2c3fa25

Please sign in to comment.