diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-06-18 21:48:22 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-06-18 21:48:22 +0200 |
commit | e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed (patch) | |
tree | f4b5bf4f310afa514d9c39fb27a0438d0e596d42 | |
parent | Update rnc schemas. (diff) | |
download | nxml-gentoo-schemas-e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed.tar.gz nxml-gentoo-schemas-e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed.tar.bz2 nxml-gentoo-schemas-e7aefd1aeb43dfb6ebe23638fa7c0adcda80a8ed.zip |
Makefile: Fix conditional.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') |