diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-29 18:24:59 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-29 18:39:16 +0100 |
commit | 2cb64f3b1b3df338acfc0ba9f719875db21812b0 (patch) | |
tree | c031316c1181846dfcad89f7b4ea722f5fc2557f /gnu/packages/wicd.scm | |
parent | 388606a72b5690aa6af64941a642884e45ee471d (diff) | |
download | patches-2cb64f3b1b3df338acfc0ba9f719875db21812b0.tar patches-2cb64f3b1b3df338acfc0ba9f719875db21812b0.tar.gz |
gnu: wicd: Fix build.
* gnu/packages/wicd.scm (wicd) [arguments]: Disable installation
via setuptools (and --single-version-externally-managed).
Diffstat (limited to 'gnu/packages/wicd.scm')
-rw-r--r-- | gnu/packages/wicd.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/wicd.scm b/gnu/packages/wicd.scm index e70bf736a5..9de956c6ff 100644 --- a/gnu/packages/wicd.scm +++ b/gnu/packages/wicd.scm @@ -67,6 +67,9 @@ (arguments `(#:python ,python-2 #:tests? #f ; test suite requires networking + ;; wicd directly extends distutils command classes, + ;; we can't easily make setup.py use setuptools. + #:use-setuptools? #f #:phases (alist-cons-before 'build 'configure |