diff options
author | Vagrant Cascadian <vagrant@reproducible-builds.org> | 2024-07-30 16:24:03 -0700 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-08-01 23:47:07 +0800 |
commit | 882077fd30ac5bec90b074f4525a47a16a15f0a0 (patch) | |
tree | 5a907d8a6f808c6998821528b7e739a5c61d1a93 | |
parent | 4f5575d376875eb123a5564f71c26af1f8137358 (diff) | |
download | guix-882077fd30ac5bec90b074f4525a47a16a15f0a0.tar.gz |
gnu: readymedia: Fix reproducible build.
* gnu/packages/upnp.scm (readymedia)[arguments]<#:configure-flags>: Avoid embedding kernel version. Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Change-Id: Ide8591d32f5eee8f6f9ccd6d4661d62e39f78c2f
-rw-r--r-- | gnu/packages/upnp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm index d85e1da956..e49c39ef57 100644 --- a/gnu/packages/upnp.scm +++ b/gnu/packages/upnp.scm @@ -151,7 +151,8 @@ and others.") (base32 "1al04jx72bxwqch1nv9lx536mb6pvj7pgnqzy6lm32q6xa114yr2")))) (build-system gnu-build-system) (arguments - `(#:configure-flags '("--with-os-name=Linux") ; uname -s + `(#:configure-flags '("--with-os-name=Linux" ; uname -s + "--with-os-version=") ; uname -r #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-source |