diff options
author | davek <davek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-24 16:17:01 +0000 |
---|---|---|
committer | davek <davek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-24 16:17:01 +0000 |
commit | 7ef88902afa64e783e9b612bf423fd9d12c668ff (patch) | |
tree | 7e3f906c08edd762b8f0f0e75d4f9b6f06343f82 /libada | |
parent | 07e48ffb3ed68c2336c51564f3f926888d469190 (diff) | |
download | gcc-7ef88902afa64e783e9b612bf423fd9d12c668ff.tar.gz |
libada/ChangeLog:
* Makefile.in (bindir): Import from autoconf and pass down to submake.
gcc/ada/ChangeLog:
* gcc-interface/Makefile.in (WIN_SO_PREFIX [windows targets]): New
Windows-specific make variable.
(WIN_SO_INSTALL_DIR [windows targets]): Likewise.
(install-gnatlib): Respect the above during installation when set,
and also install any windows import library that has been built.
(gnatlib-shared-win32): Use WIN_SO_PREFIX to name output DLL and also
build a corresponding import library.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184558 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libada')
-rw-r--r-- | libada/ChangeLog | 4 | ||||
-rw-r--r-- | libada/Makefile.in | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libada/ChangeLog b/libada/ChangeLog index 9a0db22cf8a..256ccccf016 100644 --- a/libada/ChangeLog +++ b/libada/ChangeLog @@ -1,3 +1,7 @@ +2012-02-24 Dave Korn <dave.korn.cygwin@gmail.com> + + * Makefile.in (bindir): Import from autoconf and pass down to submake. + 2012-01-22 Douglas B Rupp <rupp@gnat.com> * configure: Regenerate. diff --git a/libada/Makefile.in b/libada/Makefile.in index 5389dd005de..36cf5ad5e5a 100644 --- a/libada/Makefile.in +++ b/libada/Makefile.in @@ -33,6 +33,7 @@ MULTICLEAN = true SHELL = @SHELL@ srcdir = @srcdir@ libdir = @libdir@ +bindir = @bindir@ build = @build@ target = @target@ prefix = @prefix@ @@ -83,6 +84,7 @@ LIBADA_FLAGS_TO_PASS = \ "TRACE=$(TRACE)" \ "MULTISUBDIR=$(MULTISUBDIR)" \ "libsubdir=$(libsubdir)" \ + "bindir=$(bindir)" \ "objext=$(objext)" \ "prefix=$(prefix)" \ "exeext=.exeext.should.not.be.used " \ |