fix-scan-view-path
authorLLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Fri, 14 Sep 2018 07:24:02 +0000 (08:24 +0100)
committerJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Fri, 14 Sep 2018 07:24:02 +0000 (08:24 +0100)
===================================================================

Gbp-Pq: Name fix-scan-view-path.diff

clang/tools/scan-view/bin/scan-view

index 5adaa81f1f32042f3cf422e48be37bafabd6004e..676d78a60595ef19e0c212af32854c000f6d040f 100755 (executable)
@@ -23,6 +23,7 @@ kDefaultPort = 8181
 kMaxPortsToTry = 100
 
 ###
+BASE_DIR = '/usr/share/clang/scan-view-6.0'
 
 
 def url_is_up(url):
@@ -61,7 +62,7 @@ def start_browser(port, options):
 
 def run(port, options, root):
     # Prefer to look relative to the installed binary
-    share = os.path.dirname(__file__) + "/../share/"
+    share = os.path.join(BASE_DIR, 'share')
     if not os.path.isdir(share):
         # Otherwise look relative to the source
         share = os.path.dirname(__file__) + "/../../scan-view/share"