From: Jim Meyering Date: Thu, 20 Mar 2008 17:43:03 +0000 (+0100) Subject: Add a check to detect this problem, in case it reappears. X-Git-Tag: v6.11~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ba4b9d9d6e065e32013a9f38a201cdc156d2a5a0;p=platform%2Fupstream%2Fcoreutils.git 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. --- diff --git a/maint.mk b/maint.mk index 9f49b6e..0371ee9 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 \