From: Jan Engelhardt Date: Fri, 17 Oct 2008 00:49:21 +0000 (-0400) Subject: build: use readlink -f X-Git-Tag: v1.6~7 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=v1.5.7-5-gf373750;p=thirdparty%2Fxtables-addons.git build: use readlink -f Coreutils 5.x does not know `readlink -e`; we can also use `readlink -f` instead which is supported by 5.x. --- diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in index 03c02f1..44f11da 100644 --- a/extensions/GNUmakefile.in +++ b/extensions/GNUmakefile.in @@ -2,8 +2,8 @@ top_srcdir := @top_srcdir@ srcdir := @srcdir@ -abstop_srcdir := $(shell readlink -e ${top_srcdir}) -abssrcdir := $(shell readlink -e ${srcdir}) +abstop_srcdir := $(shell readlink -f ${top_srcdir}) +abssrcdir := $(shell readlink -f ${srcdir}) ifeq (${abstop_srcdir},) $(error Path resolution of ${top_srcdir} failed)