From 6a50718dac78d358a703d6c1635afc10e1cd0a6d Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Mon, 16 Nov 2020 21:35:00 +0100 Subject: [PATCH] windows: EXEEXT was at wrong place The EXEXT must only be in the dependency but not in the executable. --- doc/automake.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/automake.mk b/doc/automake.mk index e18086331f..9f801bc8ac 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -167,8 +167,8 @@ CLEANFILES += $(EXAMPLE_TXTS) $(EXAMPLE_SPVS) $(EXAMPLE_TEXIS) $(EXAMPLE_HTML) SUFFIXES += .sps .spv .txt .html .texi .pdf # Use pspp to process a syntax file into an output file. -pspp = src/ui/terminal/pspp$(EXEEXT) -$(EXAMPLE_SPVS): $(pspp) +pspp = src/ui/terminal/pspp +$(EXAMPLE_SPVS): $(pspp)$(EXEEXT) .sps.spv: $(AM_V_GEN)(cd $(top_srcdir)/examples \ && $(abs_top_builddir)/$(pspp) ../doc/examples/$( $@.tmp -- 2.30.2