Re: Death of gnome-common
- From: Michael Catanzaro <mcatanzaro gnome org>
- To: desktop-devel-list gnome org
- Subject: Re: Death of gnome-common
- Date: Sat, 30 May 2015 08:09:12 -0500
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]