宋文武 <iyzs...@gmail.com> skribis: > * gnu/packages/video.scm (ffmpeg)[arguments]<phases>[add-lib-to-run-path]: > Add $out/lib to the RUNPATH of libraries.
[...] > - ;; Add LIB to the RUNPATH of all the executables. > + ;; Add LIB to the RUNPATH of all the executables and libraries. > (with-directory-excursion out > (for-each (cut augment-rpath <> lib) > - (find-files "bin" ".*"))))) > + (append (find-files "bin" ".*") > + (find-files "lib" "so\\..*\\.")))))) You can even add a literal dot before “so”. OK to push. Thanks, Ludo’.