From f2725f14918b7d1cd7664fe41ad0fc184aa794c8 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Jun 2008 12:14:19 +0200 Subject: [PATCH] Fix the definition of abspath for gnu make < 3.81 --- source/build/make/templates.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/make/templates.mk b/source/build/make/templates.mk index d4973e7dd6c..e89122b443d 100644 --- a/source/build/make/templates.mk +++ b/source/build/make/templates.mk @@ -120,7 +120,7 @@ uninstallplugins:: endef # abspath for older makes -abspath := $(shell cd $(1); pwd) +abspath = $(shell cd $(dir $(1)); pwd)/$(notdir $(1)) # Install a binary # Arguments: path to binary to install -- 2.47.2