From: orbea Date: Mon, 7 Sep 2020 14:59:19 +0000 (-0700) Subject: backend/Makefile: Don't use libtool. X-Git-Tag: v2.3.3op1~65^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F11%2Fhead;p=thirdparty%2Fcups.git backend/Makefile: Don't use libtool. This is not needed and causes problems with more strict implementations of libtool. With slibtool it fails. rdlibtool: error: --mode must be specified. --- diff --git a/backend/Makefile b/backend/Makefile index e3ce49be6b..01900fb8b2 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -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; \