diff options
| author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-09 22:33:45 +0000 |
|---|---|---|
| committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-09 22:33:45 +0000 |
| commit | e18032424f090020578d5a0aec49ed36d2dbfa02 (patch) | |
| tree | aaee5ba785563c96626f1d35d49ed93c12ea3741 | |
| parent | cba9294ed64b2fd87f083e60f3da9fec97be45d3 (diff) | |
| download | ppe42-gcc-e18032424f090020578d5a0aec49ed36d2dbfa02.tar.gz ppe42-gcc-e18032424f090020578d5a0aec49ed36d2dbfa02.zip | |
* config/i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): No
longer modify standard_exec_prefix, standard_bindir_prefix, or
standard_startfile_prefix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77562 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/i386/xm-djgpp.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a99a014ec1..9f7dfd2029b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-02-09 DJ Delorie <dj@redhat.com> + + * config/i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): No + longer modify standard_exec_prefix, standard_bindir_prefix, or + standard_startfile_prefix. + 2004-02-09 James E Wilson <wilson@specifixinc.com> PR c++/11295 diff --git a/gcc/config/i386/xm-djgpp.h b/gcc/config/i386/xm-djgpp.h index a7e766f68df..9bb520da8ef 100644 --- a/gcc/config/i386/xm-djgpp.h +++ b/gcc/config/i386/xm-djgpp.h @@ -43,9 +43,6 @@ Boston, MA 02111-1307, USA. */ strcat (xref_file, xref_ext); \ } while (0) -/* Change /dev/env/DJDIR/prefix/dir/ to canonical form so gcc_exec_prefix - is set properly in 'gcc.c'. It also helps to cut down the number of times - the value of the DJGPP environment variable 'DJDIR' is evaluated. */ #undef GCC_DRIVER_HOST_INITIALIZATION #define GCC_DRIVER_HOST_INITIALIZATION \ do { \ @@ -69,9 +66,6 @@ Boston, MA 02111-1307, USA. */ fatal ("environment variable DJGPP points to corrupt file '%s'", \ djgpp); \ } \ - standard_exec_prefix = update_path (standard_exec_prefix, NULL); \ - standard_bindir_prefix = update_path (standard_bindir_prefix, NULL); \ - standard_startfile_prefix = update_path (standard_startfile_prefix, NULL); \ } while (0) /* Canonicalize paths containing '/dev/env/'; used in prefix.c. |

