summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/guile.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 07968343691..09007688328 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -87,7 +87,7 @@
87 ;; Since `guile-1.8.pc' has "Libs: ... -lgmp -lltdl", these must be 87 ;; Since `guile-1.8.pc' has "Libs: ... -lgmp -lltdl", these must be
88 ;; propagated. 88 ;; propagated.
89 (propagated-inputs `(("gmp" ,gmp) 89 (propagated-inputs `(("gmp" ,gmp)
90 ("libtool" ,libtool))) 90 ("libltdl" ,libltdl)))
91 91
92 ;; When cross-compiling, a native version of Guile itself is needed. 92 ;; When cross-compiling, a native version of Guile itself is needed.
93 (self-native-input? #t) 93 (self-native-input? #t)
@@ -131,7 +131,10 @@ without requiring the source code to be rewritten.")
131 ;; `-L' flags. As for why the `.la' file lacks the `-L' flags, see 131 ;; `-L' flags. As for why the `.la' file lacks the `-L' flags, see
132 ;; <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/18903>. 132 ;; <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/18903>.
133 ("libunistring" ,libunistring) 133 ("libunistring" ,libunistring)
134 ("libtool" ,libtool) 134
135 ;; Depend on LIBLTDL, not LIBTOOL. That way, we avoid some the extra
136 ;; dependencies that LIBTOOL has, which is helpful during bootstrap.
137 ("libltdl" ,libltdl)
135 138
136 ;; The headers and/or `guile-2.0.pc' refer to these packages, so they 139 ;; The headers and/or `guile-2.0.pc' refer to these packages, so they
137 ;; must be propagated. 140 ;; must be propagated.