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

llvm-svn: 197684
This commit is contained in:
NAKAMURA Takumi 2013-12-19 16:02:28 +00:00
parent 429a222707
commit 93a146269d
1 changed files with 1 additions and 1 deletions

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 {