Hi all,
Executing "make clean" always fails. This patch fixes the wrong arguments of `find' to resolve it. See attachment please.
Index: Makefile =================================================================== --- Makefile (revision 542) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $URL$ clean: - find -name -o -name "*~" -o -name "*.err" -o -name "*.x86f" -o -name "*.lib" -o -name "*.fas" -o -name "*.fasl" -o -name "*.faslmt" -o -name "*.ufsl" -o -name "*.abcl" | xargs rm + find \( -name "*~" -o -name "*.err" -o -name "*.x86f" -o -name "*.lib" -o -name "*.fas" -o -name "*.fasl" -o -name "*.faslmt" -o -name "*.ufsl" -o -name "*.abcl" \) -delete commit: make clean; svn up; svn ci
_______________________________________________ usocket-devel mailing list usocket-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/usocket-devel