|
From: Ian P. <piu...@us...> - 2004-04-02 01:05:23
|
Update of /cvsroot/squeak/squeak/platforms/unix/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21386 Modified Files: Makefile.install Log Message: Force compression (gzip -f) on doc files. Index: Makefile.install =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/unix/config/Makefile.install,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.install 1 Sep 2003 07:59:33 -0000 1.6 --- Makefile.install 2 Apr 2004 00:53:20 -0000 1.7 *************** *** 3,7 **** # Author: ian...@in... # ! # Last edited: 2003-08-31 20:12:26 by piumarta on emilia.inria.fr DOCFILES = COPYING COPYRIGHT LICENSE \ --- 3,7 ---- # Author: ian...@in... # ! # Last edited: 2004-02-09 10:28:52 by piumarta on emilia.local DOCFILES = COPYING COPYRIGHT LICENSE \ *************** *** 63,68 **** echo $(INSTALL_DATA) $(topdir)/platforms/unix/doc/$$f $(ROOT)$(docdir); \ $(INSTALL_DATA) $(topdir)/platforms/unix/doc/$$f $(ROOT)$(docdir); \ done - gzip -9 $(ROOT)$(docdir)/* $(MKINSTALLDIRS) $(ROOT)$(mandir)/man1 $(INSTALL_DATA) squeak.1 $(ROOT)$(mandir)/man1 --- 63,68 ---- echo $(INSTALL_DATA) $(topdir)/platforms/unix/doc/$$f $(ROOT)$(docdir); \ $(INSTALL_DATA) $(topdir)/platforms/unix/doc/$$f $(ROOT)$(docdir); \ + gzip -f9 $(ROOT)$(docdir)/* done $(MKINSTALLDIRS) $(ROOT)$(mandir)/man1 $(INSTALL_DATA) squeak.1 $(ROOT)$(mandir)/man1 |