aboutsummaryrefslogtreecommitdiffstats
path: root/xen/tools
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2013-08-02 16:52:55 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-08-02 17:09:26 +0100
commit8f55cb0e360f977dc790adc393a6fd32b9933351 (patch)
tree6b8f0b90687f410b44eaf81cdc7e35fa1ad71feb /xen/tools
parentd7dacecaa3fc843758e8c81a60c006d949094b78 (diff)
downloadxen-8f55cb0e360f977dc790adc393a6fd32b9933351.tar.gz
xen-8f55cb0e360f977dc790adc393a6fd32b9933351.tar.bz2
xen-8f55cb0e360f977dc790adc393a6fd32b9933351.zip
scmversion: 'Improve' svn interaction.
Xen has never been in an svn tree, and the current code will unconditionally create a .svn directory when run from a tarball. Therefore, simply discard the svn support. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/tools')
-rwxr-xr-xxen/tools/scmversion11
1 files changed, 1 insertions, 10 deletions
diff --git a/xen/tools/scmversion b/xen/tools/scmversion
index b0c3b952f6..b6ce0498d5 100755
--- a/xen/tools/scmversion
+++ b/xen/tools/scmversion
@@ -1,7 +1,7 @@
#!/bin/sh
#
# This scripts adds local version information from the version
-# control systems git, mercurial (hg) and subversion (svn).
+# control systems git and mercurial (hg).
#
# If something goes wrong, send a mail the kernel build mailinglist
# (see MAINTAINERS) and CC Nico Schottelius
@@ -75,15 +75,6 @@ scm_version()
# All done with mercurial
return
fi
-
- # Check for svn and a svn repo.
- if rev=`LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'`; then
- rev=`echo $rev | awk '{print $NF}'`
- printf -- 'svn:%s' "$rev"
-
- # All done with svn
- return
- fi
}
cd $srctree