From patchwork Tue May 4 17:47:38 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Fedyk X-Patchwork-Id: 96838 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o44HlbME005473 for ; Tue, 4 May 2010 17:47:47 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753156Ab0EDRrm (ORCPT ); Tue, 4 May 2010 13:47:42 -0400 Received: from adsl-63-194-240-129.dsl.lsan03.pacbell.net ([63.194.240.129]:50434 "EHLO dt01.hm" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751145Ab0EDRrl (ORCPT ); Tue, 4 May 2010 13:47:41 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by dt01.hm (8.14.3/8.14.3) with ESMTP id o44HlcS7004571 for ; Tue, 4 May 2010 10:47:38 -0700 From: Mike Fedyk Subject: [PATCH v2 2/2] Fix version.sh to work with dash To: linux-btrfs@vger.kernel.org Date: Tue, 04 May 2010 10:47:38 -0700 Message-ID: <20100504174738.4526.46612.stgit@localhost.localdomain> In-Reply-To: <20100504174733.4526.23527.stgit@localhost.localdomain> References: <20100504174733.4526.23527.stgit@localhost.localdomain> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Tue, 04 May 2010 17:47:48 +0000 (UTC) diff --git a/fs/btrfs/version.sh b/fs/btrfs/version.sh index a4576f2..d87daf4 100755 --- a/fs/btrfs/version.sh +++ b/fs/btrfs/version.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # determine-version -- report a useful version for releases # @@ -8,10 +8,10 @@ v="v0.16" -which git &> /dev/null -if [ $? == 0 ]; then - git branch >& /dev/null - if [ $? == 0 ]; then +which git 2>&1 > /dev/null +if [ $? -eq 0 ]; then + git branch 2>&1 > /dev/null + if [ $? -eq 0 ]; then v="`git show --format='%ci_%h'|head -n 1|sed 's/[^a-z0-9_-:]/_/ig'`" # Are there uncommitted changes? @@ -19,7 +19,7 @@ if [ $? == 0 ]; then if git diff-index --name-only HEAD | \ grep -v "^scripts/package" \ | read dummy; then - v="$v"-dirty + v="${v}-dirty" fi fi fi @@ -29,9 +29,9 @@ echo "#define __BUILD_VERSION" >> .build-version.h echo "#define BTRFS_BUILD_VERSION \"Btrfs $v\"" >> .build-version.h echo "#endif" >> .build-version.h -diff -q version.h .build-version.h >& /dev/null +diff -q version.h .build-version.h 2>&1 > /dev/null -if [ $? == 0 ]; then +if [ $? -eq 0 ]; then rm .build-version.h exit 0 fi