]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix installation of filters (Issue #5247)
authorMichael R Sweet <michael.r.sweet@gmail.com>
Tue, 20 Feb 2018 14:46:07 +0000 (09:46 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Tue, 20 Feb 2018 14:46:07 +0000 (09:46 -0500)
CHANGES.md
filter/Makefile

index 3b38a42a8240f7577ff4bb895016771d8bc7a8b9..d64f9ca22fb7498be66a5dd981813279f5b922e7 100644 (file)
@@ -1,6 +1,12 @@
-CHANGES - 2.3b3 - 2018-02-01
+CHANGES - 2.3b4 - 2018-02-20
 ============================
 
+Changes in CUPS v2.3b4
+----------------------
+
+- Fixed installation of filters (Issue #5247)
+
+
 Changes in CUPS v2.3b3
 ----------------------
 
index 4f67e20e9f5be3626acb8d4562a2cf9198313283..433a3ec021231b5e796cd7c477146ea0fccaa030 100644 (file)
@@ -1,8 +1,8 @@
 #
 # Filter makefile for CUPS.
 #
-# Copyright 2007-2018 by Apple Inc.
-# Copyright 1997-2006 by Easy Software Products.
+# Copyright © 2007-2018 by Apple Inc.
+# Copyright © 1997-2006 by Easy Software Products.
 #
 # Licensed under Apache License v2.0.  See the file "LICENSE" for more
 # information.
@@ -36,14 +36,14 @@ all:        $(TARGETS)
 # Make library targets...
 #
 
-libs:          $(LIBTARGETS)
+libs:
 
 
 #
 # Make unit tests...
 #
 
-unittests:     $(UNITTARGETS)
+unittests:
 
 
 #
@@ -51,8 +51,7 @@ unittests:    $(UNITTARGETS)
 #
 
 clean:
-       $(RM) $(OBJS) $(TARGETS) $(UNITTARGETS)
-       $(RM) libcupsimage.so libcupsimage.sl libcupsimage.dylib
+       $(RM) $(OBJS) $(TARGETS)
 
 
 #
@@ -83,14 +82,12 @@ install-data:
 
 install-exec:
        $(INSTALL_DIR) -m 755 $(SERVERBIN)/filter
-       for file in $(FILTERS); do \
+       for file in $(TARGETS); do \
                $(INSTALL_BIN) $$file $(SERVERBIN)/filter; \
        done
-       $(RM) $(SERVERBIN)/filter/rastertodymo
-       $(LN) rastertolabel $(SERVERBIN)/filter/rastertodymo
        if test "x$(SYMROOT)" != "x"; then \
                $(INSTALL_DIR) $(SYMROOT); \
-               for file in $(FILTERS); do \
+               for file in $(TARGETS); do \
                        cp $$file $(SYMROOT); \
                        dsymutil $(SYMROOT)/$$file; \
                done \
@@ -116,10 +113,9 @@ install-libs:
 #
 
 uninstall:
-       for file in $(FILTERS); do \
+       for file in $(TARGETS); do \
                $(RM) $(SERVERBIN)/filter/$$file; \
        done
-       $(RM) $(SERVERBIN)/filter/rastertodymo
        -$(RMDIR) $(SERVERBIN)/filter
        -$(RMDIR) $(SERVERBIN)