mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-12 18:59:50 +03:00
17 lines
472 B
Diff
17 lines
472 B
Diff
--- a/llvm/test/Bindings/Go/lit.local.cfg
|
|
+++ b/llvm/test/Bindings/Go/lit.local.cfg
|
|
@@ -1,5 +1,4 @@
|
|
import os
|
|
-import pipes
|
|
import shlex
|
|
import sys
|
|
|
|
@@ -56,7 +55,7 @@
|
|
except (AttributeError, OSError):
|
|
pass
|
|
|
|
- return ' '.join([pipes.quote(arg) for arg in args])
|
|
+ return ' '.join([shlex.quote(arg) for arg in args])
|
|
|
|
config.environment['CC'] = fixup_compiler_path(config.host_cc)
|
|
config.environment['CXX'] = fixup_compiler_path(config.host_cxx)
|