diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-05 08:45:26 +0000 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-05 08:46:58 +0000 |
commit | 130232fd8b72a683236091dd769cebb8d605dc9b (patch) | |
tree | b5ca72b42b5434c2a8b7080557389dd20d39afc9 /gnu/packages/hurd.scm | |
parent | 1a244b7814ed4ddb4a02a262e1a61022a506b963 (diff) |
gnu: netdde: Fix build.
* gnu/packages/hurd.scm (netdde)[configure-flags]: Turn it into a GEXP.
Diffstat (limited to 'gnu/packages/hurd.scm')
-rw-r--r-- | gnu/packages/hurd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index 0743bf271c..7a0236c30b 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -587,7 +587,7 @@ implementing them.") "LINK_PROGRAM=i586-pc-gnu-gcc") (list "CC=gcc"))) #:configure-flags - (list (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib")) + ,#~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")) #:phases (modify-phases %standard-phases (delete 'configure) |