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:
Nikos Ntarmos 2007-11-08 11:40:35 +01:00 committed by Julien Danjou
parent ae406f51dc
commit c108c444df
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# awesome version
VERSION = $(shell git describe 2>/dev/null || echo devel)
VERSION = $$(git describe 2>/dev/null || echo devel)
RELEASE = "Productivity Breaker"
# Customize below to fit your system