summaryrefslogtreecommitdiff
path: root/daemons
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-02-22 14:41:08 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2023-02-23 16:46:35 +0100
commit2b7fa40aacfe3765ea14c476789de4bf7bd5efe6 (patch)
treeb97759370556da574972706312cda7bbdfc8c73a /daemons
parent2b592a67d69bc22ec32929052320731abd8aad61 (diff)
downloadlvm2-2b7fa40aacfe3765ea14c476789de4bf7bd5efe6.tar.gz
configure.ac: add STATIC_LDFLAGS
Add support for specif STATIC_LDFLAGS when linking static binaries.
Diffstat (limited to 'daemons')
-rw-r--r--daemons/dmeventd/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/dmeventd/Makefile.in b/daemons/dmeventd/Makefile.in
index af51198aa..f7896e581 100644
--- a/daemons/dmeventd/Makefile.in
+++ b/daemons/dmeventd/Makefile.in
@@ -76,7 +76,7 @@ dmeventd: $(LIB_SHARED) dmeventd.o
dmeventd.static: $(LIB_STATIC) dmeventd.o
@echo " [CC] $@"
- $(Q) $(CC) $(CFLAGS) $(LDFLAGS) -static dmeventd.o \
+ $(Q) $(CC) $(CFLAGS) $(LDFLAGS) $(STATIC_LDFLAGS) -static dmeventd.o \
-o $@ $(DL_LIBS) $(DMEVENT_LIBS) $(LIBS) $(STATIC_LIBS)
ifeq ("@PKGCONFIG@", "yes")