diff options
author | Jim Meyering <jim@meyering.net> | 2002-08-09 06:12:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-08-09 06:12:29 +0000 |
commit | 6eb3ba11fbafb9df6406af1b1e7328a1683584c3 (patch) | |
tree | 49559d6ed8c0c2235a41015c7b44559a2c4fe385 | |
parent | a4726a4c8dfb6b211d77db390dc56372d01059c8 (diff) | |
download | coreutils-6eb3ba11fbafb9df6406af1b1e7328a1683584c3.tar.xz |
(check-x-vs-1): Set and export PATH so we use programs in ../src.
-rw-r--r-- | man/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 8e8a46719..1570f5fdf 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -135,6 +135,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; 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 \ |