[PATCH] D60330: [gn] Rebase paths in symlink_or_copy against root_build_dir
Petr Hosek via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 5 12:14:59 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL357798: [gn] Rebase paths in symlink_or_copy against root_build_dir (authored by phosek, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D60330?vs=193925&id=193934#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60330/new/
https://reviews.llvm.org/D60330
Files:
llvm/trunk/utils/gn/build/symlink_or_copy.gni
Index: llvm/trunk/utils/gn/build/symlink_or_copy.gni
===================================================================
--- llvm/trunk/utils/gn/build/symlink_or_copy.gni
+++ llvm/trunk/utils/gn/build/symlink_or_copy.gni
@@ -16,9 +16,9 @@
script = "//llvm/utils/gn/build/symlink_or_copy.py"
args = [
"--stamp",
- rebase_path(stamp, root_out_dir),
+ rebase_path(stamp, root_build_dir),
invoker.source,
- rebase_path(invoker.output, root_out_dir),
+ rebase_path(invoker.output, root_build_dir),
]
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60330.193934.patch
Type: text/x-patch
Size: 552 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190405/15824154/attachment.bin>
More information about the llvm-commits
mailing list