From 966e48747630df17bed48fc7bae1cf01ce6affc9 Mon Sep 17 00:00:00 2001 From: Timo Gurr Date: Thu, 15 Oct 2020 18:30:53 +0200 Subject: [PATCH] Fix installation of xinetd configuration file for cups-lpd Fix --with-xinetd=/etc/xinetd.d not installing the cups-ldp xinetd configuration file. --- scheduler/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; \ -- 2.47.2