repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 1110efa86391a4c6e502ca4311e188414faf2ded: path_to: revision_to:
commit 1110efa86391a4c6e502ca4311e188414faf2ded Author: Emanuele GiaquintaDate: Tue Sep 18 12:17:59 2007 +0000 Simplify rule to install terminfo entry. diff --git a/configure b/configure
--- a/configure +++ b/configure @@ -4861,6 +4861,7 @@ done done IFS=$as_save_IFS + test -z "$ac_cv_path_TIC" && ac_cv_path_TIC=":" ;; esac fi diff --git a/configure.ac b/configure.ac
--- a/configure.ac +++ b/configure.ac @@ -421,7 +421,7 @@ AC_ARG_WITH(terminfo, dnl# -------------------------------------------------------------------------- -AC_PATH_PROG(TIC, tic) +AC_PATH_PROG(TIC, tic, :) dnl# need a neat way to detect SVR4 or its features dnl# in src/command.c we use these functions: diff --git a/doc/Makefile.in b/doc/Makefile.in
--- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -101,7 +101,7 @@ install: $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext) @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir) @IF_PERL@ $(INSTALL_DATA) rxvtperl.3.man $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext) - if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo; fi; fi + @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo distdepend: alldoc
-----END OF PAGE-----