diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-13 20:48:23 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-13 20:48:23 +0000 |
commit | 337cc6167ba18d935f3aa37a98d3e9ad745528fa (patch) | |
tree | 594384fc9c0f29669234a2c01eb1bd6d07aac62e | |
parent | 18f327f77012189577c3b7dd5ae38bb5e3810e05 (diff) | |
download | gcc-337cc6167ba18d935f3aa37a98d3e9ad745528fa.tar.gz |
* config-ml.in: Alter CCASFLAGS to include special
multilib options the same as is done for CFLAGS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114622 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | config-ml.in | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog index 99b0472b30f..33885fffc10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-13 Jeff Johnston <jjohnstn@redhat.com> + + * config-ml.in: Alter CCASFLAGS to include special + multilib options the same as is done for CFLAGS. + 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * configure.in: Don't enable libgomp on hpux10. @@ -2090,7 +2095,7 @@ of libf2c. * configure, Makefile.in: Regenerate. -2004-05-13 Tobias Schlüter <tobi@gcc.gnu.org> +2004-05-13 Tobias Schlüter <tobi@gcc.gnu.org> * MAINTAINERS (Write After Approval): Add myself. diff --git a/config-ml.in b/config-ml.in index efec5a364c7..4082fe45d3d 100644 --- a/config-ml.in +++ b/config-ml.in @@ -108,11 +108,6 @@ ml_realsrcdir=${srcdir} ml_verbose=--verbose for option in ${ac_configure_args} do - # strip single quotes surrounding individual options - case $option in - \'*\') eval option=$option ;; - esac - case $option in --*) ;; -*) option=-$option ;; @@ -551,6 +546,7 @@ multi-do: flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \ if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) \ CFLAGS="$(CFLAGS) $${flags}" \ + CCASFLAGS="$(CCASFLAGS) $${flags}" \ FCFLAGS="$(FCFLAGS) $${flags}" \ FFLAGS="$(FFLAGS) $${flags}" \ ADAFLAGS="$(ADAFLAGS) $${flags}" \ |