Re: Death of gnome-common



This is a nit, but I think the 'set -x' to 'set +x' at the end of the
sample autogen.sh is too expansive, since it results in the conditional
tests being printed as independent statements:

autoreconf: Leaving directory `.'
+ '[' '' = '' ']'
+ ./configure --prefix /home/mcatanzaro/jhbuild/install --disable
-static --disable-gtk-doc --disable-Werror

I would probably move the 'set +x' up to after running autoreconf,
perhaps with another pair around configure:

set -x
aclocal --install || exit 1
intltoolize --force --copy --automake || exit 1
autoreconf --verbose --force --install -Wno-portability || exit 1
set +x

if [ "$NOCONFIGURE" = "" ]; then
        set -x
        $srcdir/configure "$@" || exit 1
        set +x
...



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]