diff options
author | DWesl <22566757+DWesl@users.noreply.github.com> | 2023-01-26 07:43:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-26 07:43:49 -0500 |
commit | 37c1a9953b4b0cce84feb58d8104801721964a0e (patch) | |
tree | 08e74dee0b9ad1e5e899d90ca3e5372365efe998 /tools | |
parent | d7dd06093cd16b42fa2be01928693c9635695072 (diff) | |
download | numpy-37c1a9953b4b0cce84feb58d8104801721964a0e.tar.gz |
CI: Print more debug information while rebasing.
Let's see if this shows why everything's got a fork() failure now.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/rebase_installed_dlls_cygwin.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/rebase_installed_dlls_cygwin.sh b/tools/rebase_installed_dlls_cygwin.sh index f772879d9..58d4f0c0f 100644 --- a/tools/rebase_installed_dlls_cygwin.sh +++ b/tools/rebase_installed_dlls_cygwin.sh @@ -2,4 +2,6 @@ # Rebase the dlls installed by NumPy py_ver=${1} -/usr/bin/rebase --database --oblivious `/bin/dash tools/list_numpy_dlls.sh ${py_ver}` +numpy_dlls="`/bin/dash tools/list_numpy_dlls.sh ${py_ver}`" +/usr/bin/rebase --verbose --database --oblivious ${numpy_dlls} +/usr/bin/rebase --verbose --info ${numpy_dlls} |