[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: make-bootstrap: Update patching of gawk's configure.
From: |
Ludovic Courtès |
Subject: |
02/02: gnu: make-bootstrap: Update patching of gawk's configure. |
Date: |
Sun, 14 Jun 2015 22:09:40 +0000 |
civodul pushed a commit to branch core-updates
in repository guix.
commit 86d7043cad164f06a8a37561da6eb88f28f16a8f
Author: Ludovic Courtès <address@hidden>
Date: Sun Jun 14 23:15:34 2015 +0200
gnu: make-bootstrap: Update patching of gawk's configure.
* gnu/packages/make-bootstrap.scm (%static-inputs)[gawk]: Change
"-export-dynamic" to "-Wl,-export-dynamic" to account for current
'configure' file.
---
gnu/packages/make-bootstrap.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index ae03b7b..4f02477 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -181,7 +181,7 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
;; Since we use `-static', remove
;; `-export-dynamic'.
(substitute* "configure"
- (("-export-dynamic") "")))
+ (("-Wl,-export-dynamic") "")))
,phases)))))
(inputs (if (%current-target-system)
`(("bash" ,%bash-static))