diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-11-04 17:30:29 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-11-04 17:30:29 +0100 |
commit | f3d667866711b3eb4b89125ba6e6597a45cd16d9 (patch) | |
tree | 858f1d82c8b1408e0db472321e3f5a2fee06e1b3 /Makefile | |
parent | b4cfb3a4d788d999c737d35ff5da632ffd173f7b (diff) |
Fixed year handling
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -5,7 +5,6 @@ VERSION=$(shell dpkg-parsechangelog --show-field Version) DISTROS=base base-i386 debian10 debian11 ubuntu2004 ubuntu2204 PROJECTNAME=webserver TGZNAME=$(shell ls -t ../webserver-*.tar.xz | head -n1 | sed -e 's,^../,,') -YEAR=$(shell date +"%Y") PLUGINS= \ cgi \ fcgi \ @@ -15,7 +14,7 @@ PLUGINS= \ webbox \ weblog -CXXFLAGS+=-fPIE -DVERSION=\"$(VERSION)\" -DYEAR=\"$(YEAR)\" +CXXFLAGS+=-fPIE -DVERSION=\"$(VERSION)\" LDLIBS+=\ -lcommon \ |