diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 13:06:17 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 13:06:17 -0800 |
commit | 6f4f4c89fa1f9413a674b8798b30b54cfa8651af (patch) | |
tree | 930b77f07135c0cafdf2790532b207c94bfe392c /Makefile | |
parent | 7adaaaba5522a5bc583e6ae37d0158a85018f5bb (diff) |
Go back to using GNU syntax for SPECVERSION.
It seems that what works with gmake fails with BSD make and
vice versa?
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ DATADIR?=data BUILDDIR?=build SPEC=spec.txt SITE=_site -SPECVERSION=`perl -ne 'print $$1 if /^version: *([0-9.]+)/' $(SPEC)` +SPECVERSION=$(shell perl -ne 'print $$1 if /^version: *([0-9.]+)/' $(SPEC)) PKGDIR?=cmark-$(SPECVERSION) TARBALL?=cmark-$(SPECVERSION).tar.gz FUZZCHARS?=2000000 # for fuzztest |