On Wed, Jan 30, 2008 at 06:15:25PM +0800, Bryan Wu wrote: > Signed-off-by: Bryan Wu <[EMAIL PROTECTED]> > --- > scripts/setlocalversion | 4 ++++ > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/scripts/setlocalversion b/scripts/setlocalversion > index 52f032e..2d6645c 100644 > --- a/scripts/setlocalversion > +++ b/scripts/setlocalversion > @@ -25,6 +25,10 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then > # All done with git > exit > fi > +# Check for svn and a svn repo. > +if rev=`svn info 2>/dev/null | grep '^Revision' | awk '{print $NF}'` ; then > + printf -- '-svn%s' $rev > +fi > > # Check for mercurial and a mercurial repo. > if hgid=`hg id 2>/dev/null`; then
Hi Bryna. Can I ask you to change the shell script to use a chained if so if we find git we do not try mercurial nor svn. I should have done so initially when adding the patch with mercurial support but it slipped my mind. Sam -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/