summaryrefslogtreecommitdiff
path: root/debian/patches/0003-Debian-version-info-and-bugreport.patch
blob: 6d28f0228c5d2f6919d23674933c9ac5c9d0a7df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Index: llvm-toolchain-snapshot_3.7~svn241915/lib/Support/CommandLine.cpp
===================================================================
--- llvm-toolchain-snapshot_3.7~svn241915.orig/lib/Support/CommandLine.cpp
+++ llvm-toolchain-snapshot_3.7~svn241915/lib/Support/CommandLine.cpp
@@ -1747,6 +1747,10 @@ public:
     OS << " " << LLVM_VERSION_INFO;
 #endif
     OS << "\n  ";
+#ifdef LLVM_DEBIAN_INFO
+    OS << LLVM_DEBIAN_INFO;
+#endif
+    OS << "\n  ";
 #ifndef __OPTIMIZE__
     OS << "DEBUG build";
 #else