diff options
author | Stepan Kasal <skasal@redhat.com> | 2007-05-15 20:46:27 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2007-05-16 11:43:30 +0200 |
commit | 81c3ab2d602b3c9af811277173efbdec9446c928 (patch) | |
tree | 63d24095e1e53dffe7cad44b876aaf02c3903c1c /text-utils | |
parent | 5fdb7edf654049006856c119fa46a0f4bad9fb9d (diff) | |
download | util-linux-old-81c3ab2d602b3c9af811277173efbdec9446c928.tar.gz |
build-sys: do not use wildcards in EXTRA_DIST
Wildcards in EXTRA_DIST break "make dist" for vpath build.
But plain directory names are ok.
Signed-off-by: Stepan Kasal <skasal@redhat.com>
Diffstat (limited to 'text-utils')
-rw-r--r-- | text-utils/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/text-utils/Makefile.am b/text-utils/Makefile.am index f3c3dca8..9ec071df 100644 --- a/text-utils/Makefile.am +++ b/text-utils/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/config/include-Makefile.am -EXTRA_DIST = README.* LICENSE.* +EXTRA_DIST = README.clear README.col usrbinexec_PROGRAMS = col colcrt colrm column hexdump rev line tailf @@ -23,3 +23,5 @@ more_LDADD = -ltermcap man_MANS += more.1 endif endif + +EXTRA_DIST += README.pg LICENSE.pg |