mirror of git://sourceware.org/git/glibc.git
* 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:
parent
780b91d932
commit
9dd2fc5d87
|
|
@ -1,5 +1,9 @@
|
||||||
Sun Jun 9 01:11:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
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.
|
* Version 1.90 test release.
|
||||||
|
|
||||||
* Makerules (make-target-directory): Use ./mkinstalldirs so we do not
|
* 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),$^))
|
tar chvf $@ $(addprefix $(tardir)/,$(filter-out $(tardir),$^))
|
||||||
|
|
||||||
$(tardir).tar: dist.tar subdir_dist
|
$(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)
|
tar covf $@ -C /tmp $(tardir)
|
||||||
-rm -fr /tmp/$(tardir) &
|
-rm -fr /tmp/$(tardir) &
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue