diff options
author | Brendan Tildesley <mail@brendan.scot> | 2022-03-10 20:31:39 +1100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-22 17:17:47 -0400 |
commit | bcb0a94d0b4d5d0820d9cf85a6d6cf777dc3b08d (patch) | |
tree | bd5be8493ea93ca52cdeab3312065f10cf0f79c5 | |
parent | 96b2da8cdec6ca3f7f2320b6bf37078c4f4a1a28 (diff) |
gnu: hwdata: Set #:target #f.
* gnu/packages/pciutils.scm (hwdata): Set #:target #f.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/pciutils.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/pciutils.scm b/gnu/packages/pciutils.scm index 34abfb3c2d..d0c3faff51 100644 --- a/gnu/packages/pciutils.scm +++ b/gnu/packages/pciutils.scm @@ -56,6 +56,8 @@ ;; Tests require pciutils, python, podman. Disable to avoid recursive dep. (list #:tests? #f + ;; Do not cross-compile, since the package only contains data. + #:target #f #:configure-flags #~(list (string-append "--datadir=" #$output "/share")) #:phases #~(modify-phases %standard-phases |