diff options
| -rw-r--r-- | gnu/packages/audio.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index b47e044c6a9..5756b1c7d15 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2672,7 +2672,13 @@ partial release of the General MIDI sound set.") #:configure-flags #~(list ;; Add the output lib directory to the RUNPATH. - (string-append "--ldflags=-Wl,-rpath=" #$output "/lib")))) + (string-append "--ldflags=-Wl,-rpath=" #$output "/lib")) + #:phases + '(modify-phases %standard-phases + (add-after 'unpack 'python3.11-compatibility + (lambda _ + (substitute* "wscript" + (("'rU'") "'r'"))))))) (inputs (list libsndfile boost |
