From: Glenn Morris Date: Thu, 4 Mar 2021 03:58:47 +0000 (-0800) Subject: Fix a doc/misc clean rule X-Git-Tag: emacs-28.0.90~3451 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ba33089d50a4f74b88cd7fc9d862d183d096c27d;p=emacs.git Fix a doc/misc clean rule * doc/misc/Makefile.in (TEXI_FROM_ORG): New variable. (orgclean): Fix rule. --- diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in index 060bffa638b..ed33364440d 100644 --- a/doc/misc/Makefile.in +++ b/doc/misc/Makefile.in @@ -87,6 +87,7 @@ INFO_TARGETS = $(INFO_COMMON) efaq-w32 ## are not as well formatted as handwritten ones. ORG_SETUP = $(wildcard ${srcdir}/*-setup.org) ORG_SRC = $(filter-out ${ORG_SETUP},$(wildcard ${srcdir}/*.org)) +TEXI_FROM_ORG = ${ORG_SRC:.org=.texi} # There are some naming differences between the info targets and the other # targets, so let's resolve them here. @@ -278,7 +279,7 @@ infoclean: .PHONY: orgclean orgclean: - rm -f $(addprefix ${srcdir}/,${ORG_SRC:=.texi}) + rm -f ${TEXI_FROM_ORG} bootstrap-clean maintainer-clean: distclean infoclean orgclean