diff options
author | Tom Tromey <tromey@cygnus.com> | 1999-06-21 13:03:47 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-06-21 13:03:47 +0000 |
commit | b48ed5683a719c42d69bed15028ff177d12ede62 (patch) | |
tree | 3eb065174a652092763e1549b98f6df22f1939c4 /boehm-gc/Makefile.in | |
parent | b1b9b120a47d828987d11fe921fd872bf67c496e (diff) | |
download | gcc-b48ed5683a719c42d69bed15028ff177d12ede62.tar.gz |
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt.
* Makefile.am (toolexeclibdir): Define as libdir when
appropriate.
* configure: Rebuilt.
* configure.in (USE_LIBDIR): New conditional.
From-SVN: r27667
Diffstat (limited to 'boehm-gc/Makefile.in')
-rw-r--r-- | boehm-gc/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/boehm-gc/Makefile.in b/boehm-gc/Makefile.in index 0e9525f37d0..19803135e53 100644 --- a/boehm-gc/Makefile.in +++ b/boehm-gc/Makefile.in @@ -98,9 +98,12 @@ MULTIDIRS = MULTISUBDIR = MULTIDO = true MULTICLEAN = true - -toolexecdir = $(exec_prefix)/$(target_alias) -toolexeclibdir = $(toolexecdir)/lib$(MULTISUBDIR) +@USE_LIBDIR_TRUE@toolexeclibdir = \ +@USE_LIBDIR_TRUE@$(libdir) +@USE_LIBDIR_FALSE@toolexeclibdir = \ +@USE_LIBDIR_FALSE@$(toolexecdir)/lib$(MULTISUBDIR) +@USE_LIBDIR_FALSE@toolexecdir = \ +@USE_LIBDIR_FALSE@$(exec_prefix)/$(target_alias) toolexeclib_LTLIBRARIES = $(target_all) EXTRA_LTLIBRARIES = libgcjgc.la |