How to Build Synfig Studio in Ubuntu 9.10 [debug script]

share the build-debug.sh i have :

[code]#!/bin/sh
cd synfig
CPUS=4
prefix=$(pwd)/install
export PKG_CONFIG_PATH="$prefix/lib/pkgconfig"
export PATH=$(pwd)/synfig-core/src/tool/.libs:$PATH
export CXX="/usr/bin/ccache /usr/bin/g++"

cd ETL &&
autoreconf --install --force &&
./configure --prefix $prefix &&
make install &&

cd …/synfig-core &&
libtoolize --ltdl --copy --force &&
autoreconf --install --force &&
./configure --enable-optimization=0 --prefix $prefix --enable-debug &&
make -j $CPUS install &&

cd …/synfig-studio &&
autoreconf --install --force &&
intltoolize --force --copy &&
./configure --enable-optimization=0 --prefix $prefix --enable-debug &&
make -j $CPUS install[/code]
same usage as build.sh from How to Build Synfig Studio in Ubuntu 9.10

see):ya!

(edit no more inutile b/b)

Please remove the BBcode from the script to make it useful. (The things)
-G