From c4d6ccd152cedab6fc70740135c707027062cda8 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 26 Sep 2009 20:24:14 +0200 Subject: [PATCH] maint: avoid another "make syntax-check" failure * lib/Makefile.am (match.$(OBJEXT)): Use $(ASCPPPOST), not @ASCPPPOST@. --- lib/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile.am b/lib/Makefile.am index cc2f768..00f4eac 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -25,7 +25,7 @@ libgzip_a_DEPENDENCIES += $(LIBOBJS) match.$(OBJEXT): match.c cp $(srcdir)/match.c _match.S $(CPP) $(CPPFLAGS) $(ASCPPFLAGS) _match.S > _match.i - @ASCPPPOST@ < _match.i > match_.s + $(ASCPPPOST) < _match.i > match_.s $(CC) $(CPPFLAGS) $(CFLAGS) $(ASFLAGS_config) -c match_.s mv match_.$(OBJEXT) $@ rm -f _match.S _match.i match_.s -- 2.47.2