]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Use $(VAR) rather than @VAR@, now that we can rely on automake to
authorJim Meyering <jim@meyering.net>
Sat, 5 Apr 2003 18:03:39 +0000 (18:03 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 5 Apr 2003 18:03:39 +0000 (18:03 +0000)
emit a definition for each substituted variable.

man/Makefile.am

index 194c5a983492c95034f68a3371c60f11977318e4..8c7665372e12e1eea539fe3374f4412e06016136 100644 (file)
@@ -136,7 +136,7 @@ check-local: check-x-vs-1
 # corresponding .1 file in the definition of $(dist_man_MANS) above.
 .PHONY: check-x-vs-1
 check-x-vs-1:
-       PATH=../src@PATH_SEPARATOR@$$PATH; export PATH;                 \
+       PATH=../src$(PATH_SEPARATOR)$$PATH; export PATH;                        \
        t=ls-files.$$$$;                                                \
        (cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | sort > $$t;     \
        echo $(dist_man_MANS) | fmt -w1 | sed 's/\.1$$//' | sort -u     \