From 2454d48ed41b7898653be25500aed3afa4c4f940 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 26 Sep 2023 14:15:52 -0400 Subject: [PATCH] Don't install symlinks in the .../commands directory, no longer used. --- tools/Makefile | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 69738e6a..6f7b9786 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -19,14 +19,12 @@ OBJS = \ ipptransform3d.o TARGETS = \ $(BIN_TARGETS) \ - $(COMMAND_TARGETS) \ $(SBIN_TARGETS) -COMMAND_TARGETS = \ +BIN_TARGETS = \ + ipp3dprinter \ ippdoclint \ ipptransform \ $(IPPTRANSFORM3D_BIN) -BIN_TARGETS = \ - ipp3dprinter SBIN_TARGETS = \ ippproxy @@ -64,12 +62,6 @@ install: all for file in $(BIN_TARGETS); do \ $(INSTALL_BIN) $$file $(BUILDROOT)$(bindir)/$$file; \ done - echo "Installing printer commands to $(BUILDROOT)$(libexecdir)/cups/command..." - $(INSTALL_DIR) $(BUILDROOT)$(libexecdir)/cups/command - for file in $(COMMAND_TARGETS); do \ - $(INSTALL_BIN) $$file $(BUILDROOT)$(bindir)/$$file; \ - $(LN) $(bindir)/$$file $(BUILDROOT)$(libexecdir)/cups/command/$$file; \ - done echo "Installing admin programs to $(BUILDROOT)$(sbindir)..." $(INSTALL_DIR) $(BUILDROOT)$(sbindir) for file in $(SBIN_TARGETS); do \