From: Volker Lendecke Date: Fri, 27 Jun 2008 10:14:19 +0000 (+0200) Subject: Fix the definition of abspath for gnu make < 3.81 X-Git-Tag: samba-4.0.0alpha5~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2725f14918b7d1cd7664fe41ad0fc184aa794c8;p=thirdparty%2Fsamba.git Fix the definition of abspath for gnu make < 3.81 --- 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