nlopess         Thu Feb 15 20:43:19 2007 UTC

  Modified files:              
    /php-src/build      build.mk 
  Log:
  MFB: fix cvsclean on cygwin with windows-style EOLs
  
http://cvs.php.net/viewvc.cgi/php-src/build/build.mk?r1=1.28&r2=1.29&diff_format=u
Index: php-src/build/build.mk
diff -u php-src/build/build.mk:1.28 php-src/build/build.mk:1.29
--- php-src/build/build.mk:1.28 Sun Jan  1 13:09:48 2006
+++ php-src/build/build.mk      Thu Feb 15 20:43:19 2007
@@ -14,7 +14,7 @@
 #  | Author: Sascha Schumann <[EMAIL PROTECTED]>                         |
 #  +----------------------------------------------------------------------+
 #
-# $Id: build.mk,v 1.28 2006/01/01 13:09:48 sniper Exp $ 
+# $Id: build.mk,v 1.29 2007/02/15 20:43:19 nlopess Exp $ 
 #
 #
 # Makefile to generate build tools
@@ -67,7 +67,7 @@
 
 cvsclean-work:
        @for i in `find . -name .cvsignore`; do \
-               (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep 
-v config.nice` *.o *.a .libs || true); \
+               (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep 
-v config.nice | sed 's/[\r\n]/ /g'` *.o *.a .libs || true); \
        done
 
 .PHONY: $(ALWAYS) snapshot

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to