commit | a3ed36afa987f739b7a0fc30d78a8a4a7989598b | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Fri Jul 18 23:11:33 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Fri Jul 18 23:11:33 2008 +0000 |
tree | 83da064b24f46b016c152792b1991d1e22144752 | |
parent | c083b0dbdb64cb2f3bf0c19a6f3bba72c2a78378 [diff] [blame] |
Quote invocation of clang in pipe to handle paths with spaces. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53775 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/scan-build b/utils/scan-build index a58751c..3c434a4 100755 --- a/utils/scan-build +++ b/utils/scan-build
@@ -69,7 +69,7 @@ my %AvailableAnalyses; # Query clang for analysis options. -open(PIPE, "$Clang --help |") or +open(PIPE, "'$Clang's --help |") or DieDiag("Cannot execute '$Clang'"); my $FoundAnalysis = 0;