diff options
| author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-31 17:52:16 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-04-04 23:11:16 +0200 | 
| commit | 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf (patch) | |
| tree | fbe32c22290d0c72cf73c8019cd0e5146dfdfb9d /tools/setlocalversion | |
| parent | 7fa96a9a54eb0d87d73888ec2565cda790ba0dff (diff) | |
| download | olio-uboot-2014.01-6b6bb02f27fcabfb37ea717fb7e243248e1e2acf.tar.xz olio-uboot-2014.01-6b6bb02f27fcabfb37ea717fb7e243248e1e2acf.zip | |
tools/setlocalversion: use git svn instead of git-svn
Use the new "git <subcmd>" syntax instead of the deprecated
"git-<subcmd>".
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'tools/setlocalversion')
| -rwxr-xr-x | tools/setlocalversion | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/setlocalversion b/tools/setlocalversion index bbb2ab2f7..b3f5f2824 100755 --- a/tools/setlocalversion +++ b/tools/setlocalversion @@ -25,7 +25,7 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then  	# Is this git on svn?  	if git config --get svn-remote.svn.url >/dev/null; then -		printf -- '-svn%s' "`git-svn find-rev $head`" +		printf -- '-svn%s' "`git svn find-rev $head`"  	fi  fi |