diff mbox

[btrfs-progs:] version.sh: fix version when built from tarball

Message ID 1349945028-19523-1-git-send-email-slyich@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Sergei Trofimovich Oct. 11, 2012, 8:43 a.m. UTC
From: Sergei Trofimovich <slyfox@gentoo.org>

[from 0.20-rc1 tarball]

Before the patch:
  $ ./btrfs --version
  Btrfs Btrfs v0.19

After the patch:
  $ ./btrfs --version
  Btrfs v0.20-rc1

Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
---
 version.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Chris Mason Oct. 11, 2012, 2:03 p.m. UTC | #1
On Thu, Oct 11, 2012 at 02:43:48AM -0600, Sergei Trofimovich wrote:
> From: Sergei Trofimovich <slyfox@gentoo.org>
> 
> [from 0.20-rc1 tarball]
> 
> Before the patch:
>   $ ./btrfs --version
>   Btrfs Btrfs v0.19
> 
> After the patch:
>   $ ./btrfs --version
>   Btrfs v0.20-rc1

Thanks!

-chris
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/version.sh b/version.sh
index af3e441..b81040e 100644
--- a/version.sh
+++ b/version.sh
@@ -6,7 +6,7 @@ 
 # Copyright 2008, Oracle
 # Released under the GNU GPLv2
  
-v="Btrfs v0.19"
+v="v0.20-rc1"
 
 which git &> /dev/null
 if [ $? == 0 -a -d .git ]; then