Re: svn commit: r1643793 - /subversion/trunk/autogen.sh
From: Branko Čibej <brane_at_wandisco.com>
Date: Mon, 08 Dec 2014 13:14:08 +0100
On 08.12.2014 13:03, philip_at_apache.org wrote:
I think the proper solution is to ignore cdpath by changing the
abs=`cd ./dir && pwd`
That is, use an absolute or relative path instead of just a directory
abs=$(cd $(dirname $0)/foo && pwd)
(or, to avoid bashisms: here=`dirname $0`; abs=`cd "$here/foo" && pwd`)
-- Brane
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.