]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
backend/Makefile: Don't use libtool. 11/head
authororbea <orbea@riseup.net>
Mon, 7 Sep 2020 14:59:19 +0000 (07:59 -0700)
committerorbea <orbea@riseup.net>
Mon, 19 Oct 2020 16:40:02 +0000 (09:40 -0700)
This is not needed and causes problems with more strict
implementations of libtool.

With slibtool it fails.

  rdlibtool: error: --mode must be specified.

backend/Makefile

index e3ce49be6bd067705152365980f1849a59a307dd..01900fb8b2ea2c6706649caa9fc46d1aed615383 100644 (file)
@@ -118,7 +118,7 @@ install-exec:       $(INSTALLXPC)
        echo Installing backends in $(SERVERBIN)/backend
        $(INSTALL_DIR) -m 755 $(SERVERBIN)/backend
        for file in $(RBACKENDS); do \
-               $(LIBTOOL) $(INSTALL_BIN) -m 700 $$file $(SERVERBIN)/backend; \
+               $(INSTALL_BIN) -m 700 $$file $(SERVERBIN)/backend; \
        done
        for file in $(UBACKENDS); do \
                $(INSTALL_BIN) $$file $(SERVERBIN)/backend; \
@@ -142,7 +142,7 @@ install-exec:       $(INSTALLXPC)
 install-xpc:   ipp
        echo Installing XPC backends in $(SERVERBIN)/apple
        $(INSTALL_DIR) -m 755 $(SERVERBIN)/apple
-       $(LIBTOOL) $(INSTALL_BIN) ipp $(SERVERBIN)/apple
+       $(INSTALL_BIN) ipp $(SERVERBIN)/apple
        for file in $(IPPALIASES); do \
                $(RM) $(SERVERBIN)/apple/$$file; \
                $(LN) ipp $(SERVERBIN)/apple/$$file; \