summaryrefslogtreecommitdiff
path: root/notifier/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2017-07-17 18:23:00 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2017-07-17 18:23:00 -0400
commita621d151e71d062f7ff927223db970f44bb8b43d (patch)
tree2512a7a225ea94add90bd5a8c95cd041a923a501 /notifier/Makefile
parent3a1e6b10c54efdc7f33bd084cb6386c86a0f0743 (diff)
downloadcups-a621d151e71d062f7ff927223db970f44bb8b43d.tar.gz
Update libtool support to include --mode=foo stuff - surprise, libtool changed in
incompatible ways again... (Issue #5050)
Diffstat (limited to 'notifier/Makefile')
-rw-r--r--notifier/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/notifier/Makefile b/notifier/Makefile
index c575c5173..7ae928535 100644
--- a/notifier/Makefile
+++ b/notifier/Makefile
@@ -1,7 +1,7 @@
#
# Notifier makefile for CUPS.
#
-# Copyright 2007-2012 by Apple Inc.
+# Copyright 2007-2017 by Apple Inc.
# Copyright 1997-2007 by Easy Software Products, all rights reserved.
#
# These coded instructions, statements, and computer programs are the
@@ -60,7 +60,7 @@ install: all install-data install-headers install-libs install-exec
#
install-data:
- $(INSTALL_DIR) -m 775 -g $(CUPS_GROUP) $(CACHEDIR)/rss
+ $(INSTALL_DIR) -m 775 -g $(LD_CUPS_GROUP) $(LD_CACHEDIR)/rss
#
@@ -106,7 +106,7 @@ uninstall:
done
-$(RMDIR) $(SERVERBIN)/notifier
-$(RMDIR) $(SERVERBIN)
- -$(RMDIR) $(CACHEDIR)/rss
+ -$(RMDIR) $(LD_CACHEDIR)/rss
#
@@ -123,7 +123,7 @@ depend:
dbus: dbus.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(CC) $(LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LIBS)
+ $(LD_CC) $(LDFLAGS) -o dbus dbus.o $(DBUS_NOTIFIERLIBS) $(LIBS)
#
@@ -132,7 +132,7 @@ dbus: dbus.o ../cups/$(LIBCUPS)
mailto: mailto.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
+ $(LD_CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
#
@@ -141,7 +141,7 @@ mailto: mailto.o ../cups/$(LIBCUPS)
rss: rss.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
+ $(LD_CC) $(LDFLAGS) -o rss rss.o $(LIBS)
#
@@ -150,7 +150,7 @@ rss: rss.o ../cups/$(LIBCUPS)
testnotify: testnotify.o ../cups/$(LIBCUPS)
echo Linking $@...
- $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
+ $(LD_CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
$(OBJS): ../Makedefs