summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2020-01-11 00:39:05 +0100
committerDaniel Carl <danielcarl@gmx.de>2020-01-11 00:39:05 +0100
commite58d6e7bec330f67c9672a14077eec68e9b3bb26 (patch)
treeee8bebbdfed322aba5a605524df490d00410f3a3 /config.mk
parent91af07b85c7ffcc50f6905203577fa6dee285d7e (diff)
Give the customers LDFLAGS to webextension too.
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 081f667..f5c6042 100644
--- a/config.mk
+++ b/config.mk
@@ -36,7 +36,7 @@ endif
EXTTARGET = webext_main.so
EXTCFLAGS = ${CFLAGS} $(shell pkg-config --cflags webkit2gtk-web-extension-4.0)
EXTCPPFLAGS = $(CPPFLAGS)
-EXTLDFLAGS = $(shell pkg-config --libs webkit2gtk-web-extension-4.0) -shared
+EXTLDFLAGS = ${LDFLAGS} $(shell pkg-config --libs webkit2gtk-web-extension-4.0) -shared
# flags used for the main application
CFLAGS += $(shell pkg-config --cflags $(LIBS))