diff options
author | Pieter Nagel <pnagel@epiuse.co.za> | 1998-01-17 22:29:12 +0200 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 13:29:12 -0700 |
commit | 3bf810d837ba3d6d10c315c55255ead71a4e5a5d (patch) | |
tree | e220fbbfad03e98714920453f1aa9f06938eb604 | |
parent | b24a815bdf9921978f10d1b47f73f57508a4ca34 (diff) | |
download | gcc-3bf810d837ba3d6d10c315c55255ead71a4e5a5d.zip gcc-3bf810d837ba3d6d10c315c55255ead71a4e5a5d.tar.gz gcc-3bf810d837ba3d6d10c315c55255ead71a4e5a5d.tar.bz2 |
Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and local_prefix to sub-make invocations.
8
* Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
local_prefix to sub-make invocations.
From-SVN: r17392
-rw-r--r-- | gcc/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/f/ChangeLog.egcs | 5 | ||||
-rw-r--r-- | gcc/f/Makefile.in | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 96a1091..528bcbd 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -564,6 +564,8 @@ FLAGS_TO_PASS = \ "objext=$(objext)" \ "exec_prefix=$(exec_prefix)" \ "prefix=$(prefix)" \ + "local_prefix=$(local_prefix)" \ + "gxx_include_dir=$(gxx_include_dir)" \ "tooldir=$(tooldir)" \ "bindir=$(bindir)" \ "libsubdir=$(libsubdir)" diff --git a/gcc/f/ChangeLog.egcs b/gcc/f/ChangeLog.egcs index 3ca2503..6fc29a4 100644 --- a/gcc/f/ChangeLog.egcs +++ b/gcc/f/ChangeLog.egcs @@ -1,3 +1,8 @@ +Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za> + + * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and + local_prefix to sub-make invocations. + Tue Jan 13 22:07:54 1998 Jeffrey A Law (law@cygnus.com) * lang-options.h: Add missing options. diff --git a/gcc/f/Makefile.in b/gcc/f/Makefile.in index 09b2c1a..6fb7ced 100644 --- a/gcc/f/Makefile.in +++ b/gcc/f/Makefile.in @@ -196,6 +196,8 @@ FLAGS_TO_PASS = \ "SHELL=$(SHELL)" \ "exec_prefix=$(exec_prefix)" \ "prefix=$(prefix)" \ + "local_prefix=$(local_prefix)" \ + "gxx_include_dir=$(gxx_include_dir)" \ "tooldir=$(tooldir)" \ "bindir=$(bindir)" \ "libsubdir=$(libsubdir)" |