1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-03 17:50:03 +03:00

makefiles: fix missing libs

Recent commit  dc8837f079
became actually to strict - we always want to build lib.a files.
This commit is contained in:
Zdenek Kabelac 2023-10-13 16:34:48 +02:00
parent 0bbbe08343
commit b162475391
2 changed files with 2 additions and 6 deletions

View File

@ -318,12 +318,10 @@ SUBDIRS.cflow := $(SUBDIRS:=.cflow)
SUBDIRS.clean := $(SUBDIRS:=.clean)
SUBDIRS.distclean := $(SUBDIRS:=.distclean)
TARGETS += $(LIB_STATIC)
ifeq ("@SHARED_LINK@", "yes")
TARGETS += $(LIB_SHARED)
endif
ifeq ("@STATIC_LINK@", "yes")
TARGETS += $(LIB_STATIC)
endif
all: $(SUBDIRS) $(TARGETS)

View File

@ -373,12 +373,10 @@ SUBDIRS.cflow := $(SUBDIRS:=.cflow)
SUBDIRS.clean := $(SUBDIRS:=.clean)
SUBDIRS.distclean := $(SUBDIRS:=.distclean)
TARGETS += $(LIB_STATIC)
ifeq ("@SHARED_LINK@", "yes")
TARGETS += $(LIB_SHARED)
endif
ifeq ("@STATIC_LINK@", "yes")
TARGETS += $(LIB_STATIC)
endif
INTERNAL_LIBS = \
$(top_builddir)/libdaemon/client/libdaemonclient.a \