diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-09 07:55:33 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-09 07:55:33 +0000 |
commit | 9dd2fc5d87269219f3beb91462505b93ed24a552 (patch) | |
tree | d9939bd3ee444103e7314882fd784420582e77fe | |
parent | * Version 1.90 test release. (diff) | |
download | glibc-cvs/libc-1-90.tar.gz glibc-cvs/libc-1-90.tar.bz2 glibc-cvs/libc-1-90.zip |
* Make-dist ($(tardir).tar): Use sed to check for file names longerglibc-1.90cvs/libc-960609cvs/libc-1-90
than 14 chars, instead of doschk which checks for other things we
don't care about.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Make-dist | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -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 @@ -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) & |