summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2019-05-17 07:43:00 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2019-05-17 07:43:00 -0400
commit7c11d5aea4d9ba596e71e82697bf28b0a00ea5fa (patch)
treebed81903be0a10d1839a110318a4ea311433235d /tools
parentc674bfbe2b057aeb453276f6088e082264f73d0c (diff)
downloadcups-7c11d5aea4d9ba596e71e82697bf28b0a00ea5fa.tar.gz
Fix Linux build issues with new LINKCUPS macro (Issue #5261)
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 7d19f5f73..be9cba366 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -147,7 +147,7 @@ local: ippeveprinter-static ipptool-static
ippeveprinter: ippeveprinter.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(LD_CC) $(ALL_LDFLAGS) -o $@ ippeveprinter.o $(LINKCUPS)
+ $(LD_CC) $(ALL_LDFLAGS) -o $@ ippeveprinter.o $(DNSSDLIBS) $(LINKCUPS)
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
@@ -187,7 +187,7 @@ ippeveps: ippeveps.o ../cups/$(LIBCUPS)
ippfind: ippfind.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(LD_CC) $(ALL_LDFLAGS) -o $@ ippfind.o $(LINKCUPS)
+ $(LD_CC) $(ALL_LDFLAGS) -o $@ ippfind.o $(DNSSDLIBS) $(LINKCUPS)
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@