From b0af0a49aa2dfdc1517ff6466fcd0f060f956fcf Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sat, 7 Aug 2021 17:28:30 -0600 Subject: [PATCH] dtterm: fix problem introduced with 0e9b1140ea, preventing install of dtterm The tic command needs to be under the 'install-exec-hook:' target, not the 'install:' target. Specifying the 'install:' target overrides everything else, causing the dtterm binary to not be installed on a 'make install' --- cde/programs/dtterm/Makefile.am | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cde/programs/dtterm/Makefile.am b/cde/programs/dtterm/Makefile.am index b996c6e80..9f128e6a2 100644 --- a/cde/programs/dtterm/Makefile.am +++ b/cde/programs/dtterm/Makefile.am @@ -47,13 +47,9 @@ dtterm.ti: terminfoChecklist $(RM) $@ CPP="$(GENCPP)" $(SHELL) terminfoCreate < terminfoChecklist > $@ - -install: - @TIC@ dtterm.ti - install-exec-hook: - chown root $(DESTDIR)$(bindir)/dtterm if !HAS_UTEMPTER_LIBRARY + chown root $(DESTDIR)$(bindir)/dtterm chmod 4755 $(DESTDIR)$(bindir)/dtterm endif - + @TIC@ dtterm.ti