diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-29 17:37:41 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-29 17:37:41 -0400 |
commit | 37b88c702ebe46611435f528b087d82c53dfcc77 (patch) | |
tree | e36623f4e18cfa304f35debc32ae7ba8c390466c /build-aux/Makefile.once.head | |
parent | cbe8694c76ea68d56073ffe3e74359a5db4d997a (diff) |
rename PACKAGE->dist.name VERSION->dist.version
Diffstat (limited to 'build-aux/Makefile.once.head')
-rw-r--r-- | build-aux/Makefile.once.head/00-dist.mk | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/build-aux/Makefile.once.head/00-dist.mk b/build-aux/Makefile.once.head/00-dist.mk index 98fc6b3..6a54b7d 100644 --- a/build-aux/Makefile.once.head/00-dist.mk +++ b/build-aux/Makefile.once.head/00-dist.mk @@ -16,8 +16,15 @@ # Developer configuration dist.exts ?= .tar.gz -PACKAGE ?= YOUR_PACKAGE_NAME -VERSION ?= 0.0.1 +dist.name ?= $(PACKAGE) +dist.version ?= $(VERSION) + +ifeq ($(dist.name),) +$(error dist.name must be set) +endif +ifeq ($(dist.version),) +$(error dist.name must be set) +endif # User configuration |