Canonicalize saved paths, Kythe cannot handle symlinks
Bug: 141385766 Test: build kzip Change-Id: I87c4af719135ee89298d160bb8d6395ad7d6046c
This commit is contained in:
parent
b39e15d3f3
commit
a4ef83b252
|
@ -255,7 +255,11 @@ var (
|
||||||
kytheExtract = pctx.StaticRule("kythe",
|
kytheExtract = pctx.StaticRule("kythe",
|
||||||
blueprint.RuleParams{
|
blueprint.RuleParams{
|
||||||
Command: `rm -f $out && ` +
|
Command: `rm -f $out && ` +
|
||||||
`KYTHE_CORPUS=${kytheCorpus} KYTHE_OUTPUT_FILE=$out KYTHE_VNAMES=$kytheVnames KYTHE_KZIP_ENCODING=${kytheCuEncoding} ` +
|
`KYTHE_CORPUS=${kytheCorpus} ` +
|
||||||
|
`KYTHE_OUTPUT_FILE=$out ` +
|
||||||
|
`KYTHE_VNAMES=$kytheVnames ` +
|
||||||
|
`KYTHE_KZIP_ENCODING=${kytheCuEncoding} ` +
|
||||||
|
`KYTHE_CANONICALIZE_VNAME_PATHS=prefer-relative ` +
|
||||||
`$cxxExtractor $cFlags $in `,
|
`$cxxExtractor $cFlags $in `,
|
||||||
CommandDeps: []string{"$cxxExtractor", "$kytheVnames"},
|
CommandDeps: []string{"$cxxExtractor", "$kytheVnames"},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue