diff options
author | Andreas Schwab <schwab@suse.de> | 1999-03-22 01:14:47 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1999-03-22 01:14:47 +0000 |
commit | 19b54427b2d1e3962ef0b8303932c09f53a1dc20 (patch) | |
tree | 0cc689effe18b8d6bb8b300b5e91f9fa4fa33805 | |
parent | df455ccb63266939408fba27120a7bbdee3457e9 (diff) | |
download | glibc-19b54427b2d1e3962ef0b8303932c09f53a1dc20.tar glibc-19b54427b2d1e3962ef0b8303932c09f53a1dc20.tar.gz glibc-19b54427b2d1e3962ef0b8303932c09f53a1dc20.tar.bz2 glibc-19b54427b2d1e3962ef0b8303932c09f53a1dc20.zip |
1999-03-21 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* db/Makefile: Don't try to install shared library link if not
building with shared libs.
1999-03-21 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* db/Makefile: Don't try to install shared library link if not
building with shared libs.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | db/Makefile | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,8 @@ +1999-03-21 Andreas Jaeger <aj@arthur.rhein-neckar.de> + + * db/Makefile: Don't try to install shared library link if not + building with shared libs. + 1999-03-19 Andreas Jaeger <aj@arthur.rhein-neckar.de> * rt/Makefile: Link against static library if no shared lib is diff --git a/db/Makefile b/db/Makefile index efe8b8feee..ac08e78859 100644 --- a/db/Makefile +++ b/db/Makefile @@ -29,8 +29,11 @@ distribute := compat.h \ include ../Makeconfig -install-others := $(inst_slibdir)/libdb.so$(libdb1.so-version) \ - $(db1-headers:%=$(inst_includedir)/db1/%) +install-others := $(db1-headers:%=$(inst_includedir)/db1/%) + +ifeq (yes,$(build-shared)) +install-others += $(inst_slibdir)/libdb.so$(libdb1.so-version) +endif $(inst_slibdir)/libdb.so$(libdb1.so-version): $(inst_slibdir)/libdb1-$(version).so $(+force) rm -f $@ |