git p4: avoid expanding client paths in chdir
commitbbd848633eb0a26ccd7306cb76964ab41cff6b83
authorMiklós Fazekas <mfazekas@szemafor.com>
Mon, 11 Mar 2013 21:45:29 +0000 (11 17:45 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 11 Mar 2013 22:03:11 +0000 (11 15:03 -0700)
tree8a373d91668fc1a10a8ded5f162304cad21ae341
parent89773db3e8ee4fd8f37b3051b6cd202e7bacb56a
git p4: avoid expanding client paths in chdir

The generic chdir() helper sets the PWD environment
variable, as that is what is used by p4 to know its
current working directory.  Normally the shell would
do this, but in git-p4, we must do it by hand.

However, when the path contains a symbolic link,
os.getcwd() will return the physical location.  If the
p4 client specification includes symlinks, setting PWD
to the physical location causes p4 to think it is not
inside the client workspace.  It complains, e.g.

    Path /vol/bar/projects/foo/... is not under client root /p/foo

One workaround is to use AltRoots in the p4 client specification,
but it is cleaner to handle it directly in git-p4.

Other uses of chdir still require setting PWD to an
absolute path so p4 features like P4CONFIG work.  See
bf1d68f (git-p4: use absolute directory for PWD env
var, 2011-12-09).

[ pw: tweak patch and commit message ]

Thanks-to: John Keeping <john@keeping.me.uk>
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-p4.py
t/t9808-git-p4-chdir.sh