summaryrefslogtreecommitdiff
path: root/monitor
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-03-19 16:36:24 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-03-19 16:36:24 -0400
commit21609267ec035f29a82678b1950e3fa74bedf6a9 (patch)
treef696c7eec49050ce2e9b369aa917a70e1b1adf4e /monitor
parent49b3fb63543d76384442b8c2c3b4934b0be2935e (diff)
downloadcups-21609267ec035f29a82678b1950e3fa74bedf6a9.tar.gz
Use ALL_DSOFLAGS and ALL_LDFLAGS to avoid issues with some build frameworks.
Diffstat (limited to 'monitor')
-rw-r--r--monitor/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/monitor/Makefile b/monitor/Makefile
index b2c64b9cd..69a615155 100644
--- a/monitor/Makefile
+++ b/monitor/Makefile
@@ -1,7 +1,7 @@
#
# Port monitor makefile for CUPS.
#
-# Copyright 2007-2018 by Apple Inc.
+# Copyright 2007-2019 by Apple Inc.
# Copyright 2006 by Easy Software Products.
#
# Licensed under Apache License v2.0. See the file "LICENSE" for more information.
@@ -115,7 +115,7 @@ uninstall:
bcp: bcp.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(LD_CC) $(LDFLAGS) -o $@ bcp.o $(LIBS)
+ $(LD_CC) $(ALL_LDFLAGS) -o $@ bcp.o $(LIBS)
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@
@@ -125,7 +125,7 @@ bcp: bcp.o ../cups/$(LIBCUPS)
tbcp: tbcp.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(LD_CC) $(LDFLAGS) -o $@ tbcp.o $(LIBS)
+ $(LD_CC) $(ALL_LDFLAGS) -o $@ tbcp.o $(LIBS)
$(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@