From bbde6db573b47ea1c185d1f788dad4daa7e21b4c Mon Sep 17 00:00:00 2001 From: Jason Stubbs Date: Thu, 13 Oct 2005 12:40:55 +0000 Subject: Use realpath instead of abspath to ensure that symlinks are correctly accounted for. svn path=/main/branches/2.0/; revision=2129 --- bin/ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/ebuild') diff --git a/bin/ebuild b/bin/ebuild index 45f2442e6..559d4af34 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -25,7 +25,7 @@ import portage, portage_util root = os.path.normpath(os.environ.get("ROOT", "") + "/") -ebuild = os.path.abspath(pargs.pop(0)) +ebuild = os.path.realpath(pargs.pop(0)) if not os.path.exists(ebuild): print "'%s' does not exist." % ebuild @@ -37,7 +37,7 @@ cpv = "/".join(ebuild_split[-2:])[:-7] portage_ebuild = portage.portdb.findname(cpv) -if not portage_ebuild or os.path.abspath(portage_ebuild) != ebuild: +if not portage_ebuild or os.path.realpath(portage_ebuild) != ebuild: os.environ["PORTDIR_OVERLAY"] = "/".join(ebuild_split[:-2]) print "Adjusting PORTDIR_OVERLAY to '%s'..." % os.environ["PORTDIR_OVERLAY"] reload(portage) -- cgit v1.2.3-1-g7c22