* Make-dist ($(tardir).tar): Use sed to check for file names longer

than 14 chars, instead of doschk which checks for other things we
	don't care about.
This commit is contained in:
Roland McGrath 1996-06-09 07:55:33 +00:00
parent 780b91d932
commit 9dd2fc5d87
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,9 @@
Sun Jun 9 01:11:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* Make-dist ($(tardir).tar): Use sed to check for file names longer
than 14 chars, instead of doschk which checks for other things we
don't care about.
* Version 1.90 test release.
* Makerules (make-target-directory): Use ./mkinstalldirs so we do not

View File

@ -198,7 +198,8 @@ dist.tar: $(tardir) $(+tsrcs)
tar chvf $@ $(addprefix $(tardir)/,$(filter-out $(tardir),$^))
$(tardir).tar: dist.tar subdir_dist
tar xfv $< -C /tmp | doschk
@echo Files listed here have names exceeding 14 chars.
tar xfv $< -C /tmp | sed -n '/[^/]\{15,\}/p'
tar covf $@ -C /tmp $(tardir)
-rm -fr /tmp/$(tardir) &