diff options
author | msokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-27 19:51:13 +0000 |
---|---|---|
committer | msokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-27 19:51:13 +0000 |
commit | 1e5173c2b225b26028f084e043c1f39dca0a0fb4 (patch) | |
tree | f1e1aebc3a81d3281d9e668d16e0ce2b0abc1665 | |
parent | 441075de52963b5454ea6f845b2865e43bf17632 (diff) | |
download | gcc-1e5173c2b225b26028f084e043c1f39dca0a0fb4.tar.gz |
* ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
Don't unset, it's non-portable and no longer necessary, set to empty
instead.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39300 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ltcf-cxx.sh | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index b7715c4e95a..28e7e81d775 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG> + + * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works): + Don't unset, it's non-portable and no longer necessary, set to empty + instead. + 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br> * ltconfig: Shell portability fix for the tagname validity check. diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index 3469e37875b..1a5a60eabd2 100644 --- a/ltcf-cxx.sh +++ b/ltcf-cxx.sh @@ -580,9 +580,8 @@ ac_cv_prog_cc_static= ac_cv_prog_cc_no_builtin= ac_cv_prog_cc_can_build_shared=$can_build_shared -# It is not enough to reset these cached values, they must be unset. -unset ac_cv_prog_cc_pic_works -unset ac_cv_prog_cc_static_works +ac_cv_prog_cc_pic_works= +ac_cv_prog_cc_static_works= if test "$with_gcc" = yes; then ac_cv_prog_cc_wl='-Wl,' |