* Make-dist ($(tardir).tar): Use sed to check for file names longer
authorRoland McGrath <roland@gnu.org>
Sun, 9 Jun 1996 07:55:33 +0000 (07:55 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 9 Jun 1996 07:55:33 +0000 (07:55 +0000)
than 14 chars, instead of doschk which checks for other things we
don't care about.

ChangeLog
Make-dist

index 3e0dc14..69263cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 980b2bd..01ef9c5 100644 (file)
--- a/Make-dist
+++ b/Make-dist
@@ -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) &