OBS User unknown 2008-12-16 16:46:57 +00:00 committed by Git OBS Bridge
parent 1cff8f3985
commit 66157de02d
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Dec 16 13:48:49 CET 2008 - olh@suse.de
- add .hg dir to excludepath in svngrep
-------------------------------------------------------------------
Mon Nov 10 11:16:34 CET 2008 - olh@suse.de

View File

@ -30,7 +30,7 @@ BuildRequires: neon-devel openldap2-devel
%endif
BuildRequires: sqlite-devel
Version: 1.5.2
Release: 11
Release: 12
#
%define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
#
@ -440,6 +440,8 @@ rm -rf $RPM_BUILD_ROOT
%{apache_libexecdir}/mod_authz_svn.*
%changelog
* Tue Dec 16 2008 olh@suse.de
- add .hg dir to excludepath in svngrep
* Mon Nov 10 2008 olh@suse.de
- add .git dir to excludepath in svngrep
* Wed Oct 15 2008 olh@suse.de

View File

@ -1,2 +1,2 @@
#!/bin/sh
find \( -path '*/.pc' -o -path '*/.svn' -o -path '*/.git' \) -prune -o -type f -print0 | xargs -0 grep "$@"
find \( -path '*/.pc' -o -path '*/.svn' -o -path '*/.git' -o -path '*/.hg' \) -prune -o -type f -print0 | xargs -0 grep "$@"