From e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Mon, 18 Jun 2018 21:48:22 +0200 Subject: 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') -- cgit v1.2.3-65-gdbad