diff options
-rw-r--r-- | gnu/packages/networking.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e80c192a50..1340bef8f0 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -280,6 +280,14 @@ GLib-based library, libnice, as well as GStreamer elements to use it.") (string-append "prefix=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases + (add-after 'unpack 'omit-static-library + (lambda _ + (substitute* "librtmp/Makefile" + (("cp librtmp\\.a .*") ; don't install it + "") + (("librtmp\\.a ") ; don't build it + "")) + #t)) (delete 'configure)))) (inputs `(("openssl" ,openssl-1.0) |