llvm-config: Don't show build tree with --obj-root for installed llvm-config. Show $(prefix) instead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2013-12-19 16:02:28 +00:00
parent af224d7584
commit d4cf97ba51

View File

@ -320,7 +320,7 @@ int main(int argc, char **argv) {
OS << "ON\n";
#endif
} else if (Arg == "--obj-root") {
OS << LLVM_OBJ_ROOT << '\n';
OS << ActivePrefix << '\n';
} else if (Arg == "--src-root") {
OS << LLVM_SRC_ROOT << '\n';
} else {