From: Jim Meyering Date: Sat, 26 Sep 2009 18:24:14 +0000 (+0200) Subject: maint: avoid another "make syntax-check" failure X-Git-Tag: v1.3.13~12 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=c4d6ccd152cedab6fc70740135c707027062cda8;p=debian%2Fgzip maint: avoid another "make syntax-check" failure * lib/Makefile.am (match.$(OBJEXT)): Use $(ASCPPPOST), not @ASCPPPOST@. --- 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