[Libreoffice-commits] .: Branch 'libreoffice-3-3' - configure.in
Miklos Vajna
vmiklos at kemper.freedesktop.org
Mon Nov 22 04:12:38 PST 2010
configure.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 0306e2246da44d6f213bae40d71a884bbd5b25f7
Author: Miklos Vajna <vmiklos at frugalware.org>
Date: Mon Nov 22 13:03:21 2010 +0100
configure.in: fix --without-git autodetection
The released libreoffice tarballs are named <piece>-<version>.tar.bz2,
not <version>-<piece>.tar.bz2.
diff --git a/configure.in b/configure.in
index 84fdfb8..4724226 100755
--- a/configure.in
+++ b/configure.in
@@ -1548,7 +1548,7 @@ AC_MSG_CHECKING([whether to use git to get the ooo sources])
OOO_GIT=
CLONEDIR="$BASEDIR/clone"
RAWBUILDDIR="$BASEDIR/rawbuild"
-if test \( -z "$with_git" -a -f "$SRCDIR/libreoffice-$OOO_SOURCEVERSION-bootstrap.tar.bz2" \) -o "$with_git" = "no"; then
+if test \( -z "$with_git" -a -f "$SRCDIR/libreoffice-bootstrap-$OOO_SOURCEVERSION.tar.bz2" \) -o "$with_git" = "no"; then
AC_MSG_RESULT([no])
else
OOO_GIT="git://anongit.freedesktop.org/git/libreoffice"
More information about the Libreoffice-commits
mailing list