From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C9ACD138334 for ; Sun, 14 Jul 2019 23:09:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F431E08DD; Sun, 14 Jul 2019 23:09:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7E16E08DD for ; Sun, 14 Jul 2019 23:09:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9449F347BB9 for ; Sun, 14 Jul 2019 23:08:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA32C6DB for ; Sun, 14 Jul 2019 23:08:56 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1563145674.ea927bfe866822c8f257e9403bdffd69fd3dc88e.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: ea927bfe866822c8f257e9403bdffd69fd3dc88e X-VCS-Branch: master Date: Sun, 14 Jul 2019 23:08:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5693e0a4-d18c-4264-8188-24f00dea1012 X-Archives-Hash: cea96f56d51ad131c2bbc8bb312bd22e commit: ea927bfe866822c8f257e9403bdffd69fd3dc88e Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Jul 14 23:05:57 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Jul 14 23:07:54 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ea927bfe Makefile: Use shell function Fixes: d0e76cd8e8dd ("Replace backticks") Signed-off-by: Thomas Deutschmann gentoo.org> Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 753400b..da579aa 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -#PACKAGE_VERSION = $(/bin/fgrep GK_V= genkernel | sed "s/.*GK_V='\([^']\+\)'/\1/") -PACKAGE_VERSION = $(git describe --tags |sed 's,^v,,g') +#PACKAGE_VERSION = $(shell /bin/fgrep GK_V= genkernel | sed "s/.*GK_V='\([^']\+\)'/\1/") +PACKAGE_VERSION = $(shell git describe --tags |sed 's,^v,,g') distdir = genkernel-$(PACKAGE_VERSION) MANPAGE = genkernel.8 # Add off-Git/generated files here that need to be shipped with releases