diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-18 14:54:45 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-18 14:54:45 +0200 |
commit | a9798a0abecbd129c502216a340076cf98f9b613 (patch) | |
tree | 338758301da678ae20a6bece28ba6317265ad984 | |
parent | 5a7703413b4c22aabac67171926161fedd2053c0 (diff) |
gnu: aircrack-ng: Fix build.
* gnu/packages/networking.scm (aircrack-ng)[arguments]: Add '-fcommon' to
CFLAGS.
-rw-r--r-- | gnu/packages/networking.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 869ad4b6ac..532f2773df 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -46,6 +46,7 @@ ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2021 Felix Gruber <felgru@posteo.net> ;;; Copyright © 2021 Milkey Mouse <milkeymouse@meme.institute> +;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1848,7 +1849,8 @@ live network and disk I/O bandwidth monitor.") ("zlib" ,zlib))) (arguments `(#:configure-flags - (list "--with-experimental=yes" ; build wesside-ng, etc. + (list "CFLAGS=-fcommon" + "--with-experimental=yes" ; build wesside-ng, etc. "--with-gcrypt") ; openssl's the default #:phases (modify-phases %standard-phases (add-before 'bootstrap 'patch-evalrev |