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.
This commit is contained in:
Andreas Schwab 1999-03-22 01:14:47 +00:00
parent df455ccb63
commit 19b54427b2
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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 $@