From 68fb4dbfacdcef03cf685b45362ed4246a9b6280 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 22 Nov 2010 13:03:21 +0100 Subject: [PATCH] configure.in: fix --without-git autodetection The released libreoffice tarballs are named -.tar.bz2, not -.tar.bz2. --- configure.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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" -- 1.7.3.2