diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-07 05:37:16 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-07 05:37:16 +0000 |
commit | f92ff492d73215d6097a7d39f2a3c470a466bf1c (patch) | |
tree | 744d0f09fe9cc6c210518752d155f80b1a99d069 /libchill | |
parent | e174c69cef1c0cd34ca02bde4db11d551c73de74 (diff) | |
download | gcc-f92ff492d73215d6097a7d39f2a3c470a466bf1c.tar.gz |
* Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
libdir, libsubdir and tooldir.
Applied in libchill, libf2c, libiberty and libobjc
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28569 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libchill')
-rw-r--r-- | libchill/ChangeLog | 5 | ||||
-rw-r--r-- | libchill/Makefile.in | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/libchill/ChangeLog b/libchill/ChangeLog index e7eafeed112..6e0944701b2 100644 --- a/libchill/ChangeLog +++ b/libchill/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org> + + * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix, + libdir, libsubdir and tooldir. + Thu May 20 03:20:59 1999 Jeffrey A Law (law@cygnus.com) * configure.in (AC_EXEEXT): Remove call. diff --git a/libchill/Makefile.in b/libchill/Makefile.in index 6277b9a7335..e1abc77bacf 100644 --- a/libchill/Makefile.in +++ b/libchill/Makefile.in @@ -194,7 +194,12 @@ FLAGS_TO_PASS = \ "LOADLIBES=$(LOADLIBES)" \ "PICFLAG=$(PICFLAG)" \ "RANLIB=$(RANLIB)" \ - "SHELL=$(SHELL)" + "SHELL=$(SHELL)" \ + "prefix=$(prefix)" \ + "exec_prefix=$(exec_prefix)" \ + "libdir=$(libdir)" \ + "libsubdir=$(libsubdir)" \ + "tooldir=$(tooldir)" all: chillrt0.o libchill.a @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all |