From 472791784311eb5b0bec630cb0b051d9bf0ab473 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Fri, 30 Apr 1993 16:07:56 +0000 Subject: [PATCH] (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 --- gcc/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 6058993560c..14ad9c1b556 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 -- 2.30.2