From c108c444dfcec1f3861684fc37eb74e7bca2448f Mon Sep 17 00:00:00 2001 From: Nikos Ntarmos Date: Thu, 8 Nov 2007 11:40:35 +0100 Subject: [PATCH] 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. --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 724e353e..912559b4 100644 --- a/config.mk +++ b/config.mk @@ -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