mirror of
https://git.yoctoproject.org/poky
synced 2026-09-16 18:49:34 +02:00
bitbake: perforce: Fix path subdirectory issues
With a SRC_URI = " \
p4://depot/folder/...;module=localfolder/localsubfolder;changeslist=${P4CHANGELIST} \
"
the subfolders of //depot/folder/... get renamed when mapped to the
local folder structure. They lose the first 3 letters. This
patch fixes that.
Issue reported by and patch sent from katutxakurra@gmail.com
[YOCTO #5380]
(Bitbake rev: 40e06dc459d9c0b5d42d65b2d2c846196fd36b1f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -112,7 +112,7 @@ class Perforce(FetchMethod):
|
|||||||
base = path
|
base = path
|
||||||
which = path.find('/...')
|
which = path.find('/...')
|
||||||
if which != -1:
|
if which != -1:
|
||||||
base = path[:which]
|
base = path[:which-1]
|
||||||
|
|
||||||
base = self._strip_leading_slashes(base)
|
base = self._strip_leading_slashes(base)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user