From: Timo Gurr Date: Thu, 15 Oct 2020 16:30:53 +0000 (+0200) Subject: Fix installation of xinetd configuration file for cups-lpd X-Git-Tag: v2.3.3op1~85^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=966e48747630df17bed48fc7bae1cf01ce6affc9;p=thirdparty%2Fcups.git Fix installation of xinetd configuration file for cups-lpd Fix --with-xinetd=/etc/xinetd.d not installing the cups-ldp xinetd configuration file. --- diff --git a/scheduler/Makefile b/scheduler/Makefile index b50bd0a99b..442eed6207 100644 --- a/scheduler/Makefile +++ b/scheduler/Makefile @@ -199,7 +199,8 @@ install-data: $(INSTALL_DATA) org.cups.cupsd.socket $(BUILDROOT)$(SYSTEMD_DIR); \ $(INSTALL_DATA) org.cups.cups-lpdAT.service $(BUILDROOT)$(SYSTEMD_DIR)/org.cups.cups-lpd@.service; \ $(INSTALL_DATA) org.cups.cups-lpd.socket $(BUILDROOT)$(SYSTEMD_DIR); \ - elif test "x$(XINETD)" != x; then \ + fi + if test "x$(XINETD)" != x; then \ echo Installing xinetd configuration file for cups-lpd...; \ $(INSTALL_DIR) -m 755 $(BUILDROOT)$(XINETD); \ $(INSTALL_DATA) cups-lpd.xinetd $(BUILDROOT)$(XINETD)/cups-lpd; \