diff options
| author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-11 03:08:13 +0000 |
|---|---|---|
| committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-11 03:08:13 +0000 |
| commit | a01acf144a59efd26dca417d2a16e5a7e1a9f87b (patch) | |
| tree | 619af24ebf812871449d1d3f9baabff6302116d5 | |
| parent | f6e5971197e69aa040ca3ad0dc9e580bf3dcbb89 (diff) | |
| download | ppe42-gcc-a01acf144a59efd26dca417d2a16e5a7e1a9f87b.tar.gz ppe42-gcc-a01acf144a59efd26dca417d2a16e5a7e1a9f87b.zip | |
* gcc/Makefile.in (gcc-cross): Add $(exeext) to target name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112847 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 209b378d34d..c5aa369f7f4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-04-10 Mike Frysinger <vapier@gentoo.org> + + * gcc/Makefile.in (gcc-cross): Add $(exeext) to target name. + 2006-04-10 Aldy Hernandez <aldyh@redhat.com> PR/21391 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d29fcaa961d..48f4ddfa059 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1251,7 +1251,7 @@ config.status: $(srcdir)/configure $(srcdir)/config.gcc all.internal: start.encap rest.encap doc # This is what to compile if making a cross-compiler. -all.cross: native gcc-cross cpp$(exeext) specs \ +all.cross: native gcc-cross$(exeext) cpp$(exeext) specs \ $(LIBGCC) $(EXTRA_PARTS) lang.all.cross doc @GENINSRC@ srcextra # This is what must be made before installing GCC and converting libraries. start.encap: native xgcc$(exeext) cpp$(exeext) specs \ @@ -1361,7 +1361,7 @@ $(SPECS): xgcc$(exeext) # We do want to create an executable named `xgcc', so we can use it to # compile libgcc2.a. # Also create gcc-cross, so that install-common will install properly. -gcc-cross: xgcc$(exeext) +gcc-cross$(exeext): xgcc$(exeext) cp xgcc$(exeext) gcc-cross$(exeext) dummy-checksum.o : dummy-checksum.c |

