Skip to content

Commit 8a5abeb

Browse files
committed
[css2] No longer includes subdirectories of images.
Made copying files slightly faster, by avoiding one AFS cache lookup. --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401424
1 parent 5676514 commit 8a5abeb

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

css2/Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Makefile to generate the CSS2 document based on its "source files"
22
# Arnaud Le Hors - lehors@w3.org
3-
# $Id: Makefile,v 2.28 1998-03-24 15:09:23 ijacobs Exp $
3+
# $Id: Makefile,v 2.29 1998-03-24 18:32:41 bbos Exp $
44

55
# what needs to be set for every new release:
66
# Note use of full year (1998) in identifier.
@@ -271,7 +271,7 @@ install: all css2.tgz
271271
fi
272272
@if [ ! -d $(INSTALLDIR) ]; then mkdir -p $(INSTALLDIR);fi
273273
$(CP) css2.tgz $(INSTALLDIR)
274-
(cd $(INSTALLDIR); zcat css2.tgz | $(TAR) xvf -)
274+
zcat css2.tgz | (cd $(INSTALLDIR); $(TAR) xvf -)
275275
-$(RM) -f $(CSSGROUPDIR)/issues.html
276276
-$(RM) $(CSSGROUPDIR)/css2-issues.html
277277
$(LN) -s $(INSTALLDIR)/issues.html $(CSSGROUPDIR)/css2-issues.html
@@ -310,7 +310,8 @@ css2.txt txt: css2.html
310310
####
311311

312312
css2.tgz: $(ALLOBJS) # images/links.ok
313-
$(TAR) cf - $(ALLOBJS) `$(LS) -d images/* | $(GREP) -v "\."` | gzip >$@
313+
# $(TAR) cf - $(ALLOBJS) `$(LS) -d images/* | $(GREP) -v "\."` | gzip >$@
314+
$(TAR) cf - $(ALLOBJS) | gzip >$@
314315

315316
css2.zip: $(ALLOBJS)
316317
$(ZIP) $@ $(ALLOBJS) `$(LS) -d images/* | $(GREP) -v "\."`

0 commit comments

Comments
 (0)