~ubuntu-branches/ubuntu/karmic/openoffice.org-l10n/karmic

« back to all changes in this revision

Viewing changes to ooo-build/autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Chris Cheney
  • Date: 2009-05-26 18:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090526180000-t5otxzhj1rru5ovt
Tags: 1:3.1.0-3ubuntu2
* Copy of the openoffice.org source.
  - debian/changelog: Change source name.
  - debian/control.in: Change source name.
  - debian/control: Regenerate control file.

* Correct path to splitgsi in convert2po.
* Disable gsi-export for Rosetta due to bug in localize.pl.
* Reenable building on sparc.
* Switch boost to 1.38.
* Resynchronise with ooo-build-3-1 (271b85e5ce6b601d75d0693b9c937d1eabd069dc).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    rm -Rf autom4te.cache bonobo/autom4te.cache
8
8
    rm -f missing install-sh mkinstalldirs libtool ltmain.sh
9
9
    rm -f bonobo/missing bonobo/install-sh bonobo/mkinstalldirs \
10
 
        bonobo/libtool bonobo/ltmain.sh
 
10
          bonobo/libtool bonobo/ltmain.sh
11
11
    exit 1;
12
12
fi
13
13
 
37
37
fi
38
38
 
39
39
# prepare git hooks
40
 
[ -d .git ] && for file in `cd git-hooks ; echo *`
41
 
do
42
 
    hook=".git/hooks/$file"
43
 
    if [ ! -x "$hook" -a ! -L "$hook" ] ; then
44
 
        rm -f "$hook"
45
 
        ln -s "../../git-hooks/$file" "$hook"
46
 
    fi
47
 
done
 
40
if [ -d .git ] ; then
 
41
    for file in `cd git-hooks ; echo *`
 
42
    do
 
43
        hook=".git/hooks/$file"
 
44
        if [ ! -x "$hook" -a ! -L "$hook" ] ; then
 
45
            rm -f "$hook"
 
46
            ln -s "../../git-hooks/$file" "$hook"
 
47
        fi
 
48
    done
 
49
fi