lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lynx-dev minor fix for lynx 2.8.2.dev6


From: Larry W. Virden
Subject: lynx-dev minor fix for lynx 2.8.2.dev6
Date: Sun, 22 Nov 1998 05:45:36 -0500 (EST)

There's a little bug in the make distclean code.  The - before commands
only applys to the direct subshells that make executes.  The -exec
flag of the find is done by a sub-subshell.  With the - in front of the rm,
shell says that it can't find a command called "-rm".

--- makefile.in Sat Nov 21 12:10:04 1998
+++ makefile.in-new     Sun Nov 22 05:43:27 1998
@@ -228,4 +228,4 @@
        -rm -f WWW/Library/unix/makefile src/makefile src/chrtrans/makefile
-       @address@hidden . -type f -name '*.rej' -exec -rm -f {} \;
-       @address@hidden . -type f -name '*.orig' -exec -rm -f {} \;
+       @address@hidden . -type f -name '*.rej' -exec rm -f {} \;
+       @address@hidden . -type f -name '*.orig' -exec rm -f {} \;
        @address@hidden WWW/Library/unix && rmdir WWW/Library && rmdir WWW
-- 
Larry W. Virden                 <URL:mailto:address@hidden>
<URL:http://www.purl.org/NET/lvirden/> <*> O- "No one is what he seems."
Unless explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]