diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-16 01:00:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-16 01:00:01 +0100 |
commit | a01b216508bb84b55d9a769d753b78c5df1c64d5 (patch) | |
tree | 063d4c0b9eaada85ddc3ae5c334ce1810c174e41 /gnu/packages/scanner.scm | |
parent | 2ea9a977fe108079ca401a322b285c4c7f971c47 (diff) |
gnu: scanbd: Fix build.
* gnu/packages/scanner.scm (scanbd)[arguments]: Add ‘-Wno-error’ to CFLAGS
in #:configure-flags.
Diffstat (limited to 'gnu/packages/scanner.scm')
-rw-r--r-- | gnu/packages/scanner.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/scanner.scm b/gnu/packages/scanner.scm index 55b0288076..e7a5a2b210 100644 --- a/gnu/packages/scanner.scm +++ b/gnu/packages/scanner.scm @@ -265,7 +265,8 @@ package contains the library and drivers."))) (arguments (list #:configure-flags #~(list "--disable-debug" - "--sysconfdir=/etc") + "--sysconfdir=/etc" + "CFLAGS=-Wno-error") ; warnings should never be fatal #:phases #~(modify-phases %standard-phases (replace 'install |