[m-rev.] Re: diff: fix web page HTML manual installation
Fergus Henderson
fjh at cs.mu.OZ.AU
Wed Jan 21 17:30:09 AEDT 2004
On 21-Jan-2004, Fergus Henderson <fjh at cs.mu.oz.au> wrote:
> Fix a bug where the HTML version of the manuals was not being installed
> on the web page.
Actually that wasn't sufficient to solve the problem.
But I hope the following additional patch will.
Estimated hours taken: 0.5
Branches: main
w3/Makefile.common:
Remove `-u' from the definition of CP. The `-u' ("update") option
to cp has undesirable effects when used in combination with `-r'
(which is implied by `-a', which we use). In particular, for
`cp -afu srcdir targetdir', if the target directory already
exists and is newer than the source directory, then cp will not
recurse down into the directories, checking whether there are
new files in the source directory which are not present in the
target directory or which are newer in the source directory than
in the target directory.
Workspace: /mnt/ceres/home/ceres/fjh/mercury
Index: w3/Makefile.common
===================================================================
RCS file: /home/mercury1/repository/w3/Makefile.common,v
retrieving revision 1.13
diff -u -d -r1.13 Makefile.common
--- w3/Makefile.common 19 Oct 2001 05:24:11 -0000 1.13
+++ w3/Makefile.common 21 Jan 2004 06:04:20 -0000
@@ -5,7 +5,7 @@
#-----------------------------------------------------------------------------#
PHP3=/usr/lib/cgi-bin/php3 -q
-CP=cp -afu
+CP=cp -af
#-----------------------------------------------------------------------------#
--
Fergus Henderson <fjh at cs.mu.oz.au> | "I have always known that the pursuit
The University of Melbourne | of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh> | -- the last words of T. S. Garp.
--------------------------------------------------------------------------
mercury-reviews mailing list
post: mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------
More information about the reviews
mailing list