From: Paul Eggert Date: Fri, 15 Aug 2003 06:03:15 +0000 (+0000) Subject: Use the `$(VAR)' notation for AC_REPLACED variable names, rather than @VAR@. X-Git-Tag: cvs-readonly~4633 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=ca3546491349fc281ad3581278c51823602d1497;p=gnulib.git Use the `$(VAR)' notation for AC_REPLACED variable names, rather than @VAR@. Use `$@' in the commands, in place of the three copies of the literal target. --- diff --git a/modules/alloca b/modules/alloca index dab7d00de..7723c8a3c 100644 --- a/modules/alloca +++ b/modules/alloca @@ -17,10 +17,10 @@ EXTRA_DIST += alloca_.h # We need the following in order to create an when the system # doesn't have one that works with the given compiler. -all-local $(lib_OBJECTS): @ALLOCA_H@ +all-local $(lib_OBJECTS): $(ALLOCA_H) alloca.h: alloca_.h - cp $(srcdir)/alloca_.h alloca.h-t - mv alloca.h-t alloca.h + cp $(srcdir)/alloca_.h $@-t + mv $@-t $@ MOSTLYCLEANFILES += alloca.h alloca.h-t Include: @@ -28,4 +28,3 @@ Include: Maintainer: bug-gnulib@gnu.org - diff --git a/modules/fnmatch b/modules/fnmatch index 75e5189f1..76c06c69b 100644 --- a/modules/fnmatch +++ b/modules/fnmatch @@ -19,10 +19,10 @@ EXTRA_DIST += fnmatch_.h fnmatch_loop.c # We need the following in order to create an when the system # doesn't have one that supports the required API. -all-local $(lib_OBJECTS): @FNMATCH_H@ +all-local $(lib_OBJECTS): $(FNMATCH_H) fnmatch.h: fnmatch_.h - cp $(srcdir)/fnmatch_.h fnmatch.h-t - mv fnmatch.h-t fnmatch.h + cp $(srcdir)/fnmatch_.h $@-t + mv $@-t $@ MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t Include: @@ -30,4 +30,3 @@ Include: Maintainer: all, glibc -