Make config.mk bsd-friendly
The $(shell ...) substitution in config.mk is not understood by BSD-style make. The attached patch allows it to work with both BSD and GNU make.
This commit is contained in:
parent
ae406f51dc
commit
c108c444df
|
@ -1,5 +1,5 @@
|
||||||
# awesome version
|
# awesome version
|
||||||
VERSION = $(shell git describe 2>/dev/null || echo devel)
|
VERSION = $$(git describe 2>/dev/null || echo devel)
|
||||||
RELEASE = "Productivity Breaker"
|
RELEASE = "Productivity Breaker"
|
||||||
|
|
||||||
# Customize below to fit your system
|
# Customize below to fit your system
|
||||||
|
|
Loading…
Reference in New Issue