[Libreoffice] First build from sources
Thomas Klausner
wiz at NetBSD.org
Sun Oct 3 00:08:49 PDT 2010
On Sun, Oct 03, 2010 at 01:02:12AM +0200, Miklos Vajna wrote:
> > i.e. the quotes are missing, and I don't know why. Ideas?
>
> Are you sure? config.log may miss the quotes but look at bin/setup, that
> contains the quotes here.
I found out why the quotes are missing: The arguments are evaluated
when calling configure.
The attached diff fixes the problem for me, ok to push?
Thomas
-------------- next part --------------
diff --git a/bin/build-ooo b/bin/build-ooo
index b5f8794..cfeb2fa 100755
--- a/bin/build-ooo
+++ b/bin/build-ooo
@@ -50,7 +50,7 @@ echo "Env for configure:"
set
echo "Env for configure ends"
-eval ./autogen.sh "$CONFIGURE_OPTIONS" "$PROPAGATED_ARGS" || exit 1;
+sh ./autogen.sh "$CONFIGURE_OPTIONS" "$PROPAGATED_ARGS" || exit 1;
# Final build preparation
More information about the LibreOffice
mailing list