diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 01:48:28 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 03:10:54 +0100 |
commit | af5742c05b1ea1aac8fb0707e265964006cd197a (patch) | |
tree | 8fe983153e71c11ad8cd510639211859b5f28e01 | |
parent | 4b63373ea4a7067dd51eb964ac8dad8d3105fafa (diff) | |
download | guix-af5742c05b1ea1aac8fb0707e265964006cd197a.tar.gz |
gnu: proxychains-ng: Cross-compile.
* gnu/packages/networking.scm (proxychains-ng)[arguments]: Use CC-FOR-TARGET.
-rw-r--r-- | gnu/packages/networking.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index f6c020864f..851940469d 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2283,8 +2283,7 @@ libproxy only have to specify which proxy to use.") line))))) (add-before 'configure 'set-up-environment (lambda _ - (setenv "CC" "gcc") - #t))))) + (setenv "CC" ,(cc-for-target))))))) (synopsis "Redirect any TCP connection through a proxy or proxy chain") (description "Proxychains-ng is a preloader which hooks calls to sockets in dynamically linked programs and redirects them through one or more SOCKS or |