mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

* Get rid of 'index' lines in patches, which are unnecessary and likely wrong anyway (esp. when there are multiple patches) * Simplify patches to remove unnecessary context and make them more robust
7 lines
346 B
Diff
7 lines
346 B
Diff
diff --git third_party/py/python_configure.bzl third_party/py/python_configure.bzl
|
|
--- third_party/py/python_configure.bzl
|
|
+++ third_party/py/python_configure.bzl
|
|
@@ -193,1 +193,1 @@ def _get_python_lib(repository_ctx, python_bin, lib_path_key):
|
|
- cmd = '%s - %s' % (python_bin, print_lib)
|
|
+ cmd = '"%s" - %s' % (python_bin, print_lib)
|
|
--
|