diff options
author | Sobak <msobaczewski@gmail.com> | 2014-05-10 13:16:48 +0200 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-06-08 19:27:58 -0700 |
commit | 244c289f9cc29c25fcd9988d0ffefa693c27ae32 (patch) | |
tree | 06df83dc5d922742b20ed57df4e08ac0acd50aa1 /build | |
parent | cfccdc63628944cde2c9fe9bfbc897cce3e22dc5 (diff) | |
download | php-git-244c289f9cc29c25fcd9988d0ffefa693c27ae32.tar.gz |
Removed cvsclean and svnclean tools
Diffstat (limited to 'build')
-rw-r--r-- | build/build.mk | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/build/build.mk b/build/build.mk index ac5dadb313..2c189159a2 100644 --- a/build/build.mk +++ b/build/build.mk @@ -1,7 +1,7 @@ # +----------------------------------------------------------------------+ # | PHP Version 5 | # +----------------------------------------------------------------------+ -# | Copyright (c) 1997-2006 The PHP Group | +# | Copyright (c) 1997-2014 The PHP Group | # +----------------------------------------------------------------------+ # | This source file is subject to version 3.01 of the PHP license, | # | that is bundled with this package in the file LICENSE, and is | @@ -14,8 +14,6 @@ # | Author: Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id$ -# # # Makefile to generate build tools # @@ -61,16 +59,6 @@ snapshot: md5sum $$distname.tar.bz2; \ bzip2 -t $$distname.tar.bz2 -cvsclean-work: - @for i in `find . -name .cvsignore`; do \ - (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[[:space:]]/ /g'` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \ - done - -svnclean-work: - @for i in `find . -type d ! -path '*/.svn/*' | grep -v '.svn'`; do \ - (cd $$i 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \ - done - gitclean-work: @if (test ! -f '.git/info/exclude' || grep -s "git-ls-files" .git/info/exclude); then \ (echo "Rebuild .git/info/exclude" && echo '*.o' > .git/info/exclude && git svn propget svn:ignore | grep -v config.nice >> .git/info/exclude); \ |