summaryrefslogtreecommitdiff
path: root/maint.mk
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-03-20 18:43:03 +0100
committerJim Meyering <meyering@redhat.com>2008-03-20 18:43:03 +0100
commitba4b9d9d6e065e32013a9f38a201cdc156d2a5a0 (patch)
tree426bac9c1d9e04f702a2f1d8dfc0669b2f6e8c3f /maint.mk
parent4682f132f2d06cb7c93b94f1cf35795116291f74 (diff)
downloadcoreutils-ba4b9d9d6e065e32013a9f38a201cdc156d2a5a0.tar.xz
Add a check to detect this problem, in case it reappears.
* maint.mk (my-distcheck): Run "make install", and then ensure that ls.1 is installed.
Diffstat (limited to 'maint.mk')
-rw-r--r--maint.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/maint.mk b/maint.mk
index 9f49b6e6e..0371ee98f 100644
--- a/maint.mk
+++ b/maint.mk
@@ -592,10 +592,12 @@ my-distcheck: $(local-check) check
mkdir -p $(t)
GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
cd $(t)/$(distdir) \
- && ./configure --disable-nls \
+ && ./configure --disable-nls --prefix=$(t)/i \
&& $(MAKE) CFLAGS='$(warn_cflags)' \
AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)' \
&& $(MAKE) dvi \
+ && $(MAKE) install \
+ && test -f $(mandir)/man1/ls.1 \
&& mkdir $(bin) \
&& ($(write_loser)) > $(bin)/loser \
&& chmod a+x $(bin)/loser \