[PATCH] D98661: [M68k] Fixed incorrect `extract-section` command substitution

Min-Yih Hsu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 16 13:39:06 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG340d558c7789: [M68k] Fixed incorrect `extract-section` command substitution (authored by myhsu).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D98661/new/

https://reviews.llvm.org/D98661

Files:
  llvm/test/CodeGen/M68k/lit.local.cfg


Index: llvm/test/CodeGen/M68k/lit.local.cfg
===================================================================
--- llvm/test/CodeGen/M68k/lit.local.cfg
+++ llvm/test/CodeGen/M68k/lit.local.cfg
@@ -6,7 +6,8 @@
         'utils', 'extract-section.py')
 
 config.substitutions.append(('extract-section',
-    extract_section_path + ' --byte-indicator --hex-width=2'))
+    "'%s' %s %s" % (config.python_executable,
+                    extract_section_path, '--byte-indicator --hex-width=2')))
 
 if not 'M68k' in config.root.targets:
     config.unsupported = True


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D98661.331097.patch
Type: text/x-patch
Size: 563 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210316/499b35b5/attachment.bin>


More information about the llvm-commits mailing list