[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <529C9FF7.3040005@suse.cz>
Date: Mon, 02 Dec 2013 15:57:59 +0100
From: Michal Marek <mmarek@...e.cz>
To: Franck Bui-Huu <fbuihuu@...il.com>
Cc: linux-kernel@...r.kernel.org
Subject: Re: [PATCH] Fix detectition of kernel git repository in setlocalversion
script
On 2.12.2013 14:21, Franck Bui-Huu wrote:
> diff --git a/scripts/setlocalversion b/scripts/setlocalversion
> index 0b5ccf3..c16e65d 100755
> --- a/scripts/setlocalversion
> +++ b/scripts/setlocalversion
> @@ -43,7 +43,8 @@ scm_version()
> fi
>
> # Check for git and a git repo.
> - if test -d .git && head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
> + if topdir=$(git rev-parse --show-cdup 2>/dev/null) && test -z "$topdir" &&
> + head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
You can do test -z "$(git rev-parse --show-cdup 2>/dev/null)" without
the $topdir variable.
Michal
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists