From 3eb57a841ab0dbb954f1dfe1c69f3f68f9c20a79 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Mon, 18 Sep 2006 16:16:23 +0000 Subject: [PATCH] Forgot one step necessary for guile and cross-compiling. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14859 57a11ea4-9604-0410-9ed3-97b8803252fd --- packaging/win32/install.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packaging/win32/install.sh b/packaging/win32/install.sh index bf93aea5af..f6a265de5d 100644 --- a/packaging/win32/install.sh +++ b/packaging/win32/install.sh @@ -326,7 +326,14 @@ function inst_guile() { (define software-type (lambda () '"'"'ms-dos))' guile.init.bak > guile.init qpopd fi - if test x$cross_compile != xyes ; then + if test x$cross_compile = xyes ; then + qpushd $GUILE_DIR/bin + # The cross-compiling guile expects these program names + # for the build-time guile + ln -sf /usr/bin/guile-config mingw32-guile-config + ln -sf /usr/bin/guile mingw32-build-guile + qpopd + else add_to_env "-I $_GUILE_UDIR/share/aclocal" ACLOCAL_FLAGS fi guile -c '(use-modules (srfi srfi-39))' &&