diff options
author | Richard Stallman <rms@gnu.org> | 1993-04-30 16:07:56 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-04-30 16:07:56 +0000 |
commit | 472791784311eb5b0bec630cb0b051d9bf0ab473 (patch) | |
tree | 0b4c66fede4805f46b0c4d230782c52c7f61cbe7 | |
parent | 31dcf83f634339a70ec9b00f5a0045ab7beb6ad0 (diff) | |
download | gcc-472791784311eb5b0bec630cb0b051d9bf0ab473.zip gcc-472791784311eb5b0bec630cb0b051d9bf0ab473.tar.gz gcc-472791784311eb5b0bec630cb0b051d9bf0ab473.tar.bz2 |
(install-normal): Move install-libgcc after $(INSTALL_HEADERS) in deps.
(tooldir): Use exec_prefix, not prefix.
(gcc.o): Likewise for TOOLDIR_BASE_PREFIX.
From-SVN: r4288
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 6058993..14ad9c1b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -159,7 +159,7 @@ manext = .1 mandir = $(prefix)/man/man1 # Directory in which to find other cross-compilation tools and headers. # Used in install-cross. -tooldir = $(prefix)/$(target) +tooldir = $(exec_prefix)/$(target) # Dir for temp files. tmpdir = /tmp @@ -836,7 +836,7 @@ gcc.o: gcc.c $(CONFIG_H) gvarargs.h config.status -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \ -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \ -DDEFAULT_TARGET_MACHINE=\"$(target)\" \ - -DTOOLDIR_BASE_PREFIX=\"$(prefix)/\" \ + -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \ -DTOOLDIR=\"$(tooldir)/\" \ $(MAYBE_TARGET_DEFAULT) \ -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'` @@ -1495,7 +1495,7 @@ realclean: distclean install: $(INSTALL_TARGET) ; @true # Copy the compiler files into directories where they will be run. -install-normal: install-common install-libgcc $(INSTALL_HEADERS) install-man +install-normal: install-common $(INSTALL_HEADERS) install-libgcc install-man # Do nothing while making gcc with a cross-compiler. The person who # makes gcc for the target machine has to know how to put a complete |