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 5AF0C138334 for ; Mon, 18 Jun 2018 19:48:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53CBAE092C; Mon, 18 Jun 2018 19:48:57 +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 2D284E092C for ; Mon, 18 Jun 2018 19:48:57 +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 2D2B3335C63 for ; Mon, 18 Jun 2018 19:48:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAC9B28D for ; Mon, 18 Jun 2018 19:48:54 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1529351302.e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed.ulm@gentoo> Subject: [gentoo-commits] proj/nxml-gentoo-schemas:master commit in: / X-VCS-Repository: proj/nxml-gentoo-schemas X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed X-VCS-Branch: master Date: Mon, 18 Jun 2018 19:48:54 +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-Archives-Salt: f064d3df-f016-4b58-87c5-9d69ecea2eeb X-Archives-Hash: 2ba8215687e81e9755aede054b5b8017 commit: e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed Author: Ulrich Müller gentoo org> AuthorDate: Mon Jun 18 19:48:22 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jun 18 19:48:22 2018 +0000 URL: https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/commit/?id=e7aefd1a Makefile: Fix conditional. Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 649478c..68f9585 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DTDS = book.dtd gleps.dtd glsa.dtd guide.dtd metadata.dtd metadoc.dtd \ DTDDEPS = $(patsubst %.dtd,%.dep,$(DTDS)) RNCS = $(patsubst %.dtd,%.rnc,$(DTDS)) -ifdef ($(PV),) +ifneq ($(PV),) PN=nxml-gentoo-schemas-$(PV) else PN=nxml-gentoo-schemas-$(shell date '+%Y%m%d')