After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 641586 - configure should honor aclocal flags ACLOCAL_FLAGS
configure should honor aclocal flags ACLOCAL_FLAGS
Status: RESOLVED FIXED
Product: librsvg
Classification: Core
Component: general
unspecified
Other All
: Normal enhancement
: ---
Assigned To: librsvg maintainers
librsvg maintainers
Depends on:
Blocks: 641445
 
 
Reported: 2011-02-05 07:05 UTC by Craig Keogh
Modified: 2011-02-05 23:36 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Honor aclocal flags (569 bytes, patch)
2011-02-05 07:07 UTC, Craig Keogh
committed Details | Review

Description Craig Keogh 2011-02-05 07:05:39 UTC
I'm building librsvg via JHBuild. librsvg builds
successfully. If upstream then updates configure.in, then I run 'make', which
attempts a reconfigure, but fails.

This is because JHBuild sets ACLOCAL_FLAGS to include the sandbox (e.g. -I
/opt/gnome/share/aclocal). One may argue it is silly for JHBuild to require
every module to support ACLOCAL_FLAGS, but there isn't a way around it until
automake-1.12 is out - which includes support for ACLOCAL_PATH. Further details
in the JHBuild bug 634617.

The build failure is:
make  V=1
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/Oxyde/gnome/librsvg/missing --run aclocal-1.11 
configure.in:8: warning: AC_INIT: not a literal: https://bugzilla.gnome.org/enter_bug.cgi?product=librsvg
 cd . && /bin/sh /home/Oxyde/gnome/librsvg/missing --run automake-1.11 --foreign
configure.in:8: warning: AC_INIT: not a literal: https://bugzilla.gnome.org/enter_bug.cgi?product=librsvg
gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL
doc/Makefile.am:132:   `gtk-doc.make' included from here
gtk-doc.make:51: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
doc/Makefile.am:132:   `gtk-doc.make' included from here
gtk-doc.make:52: GTK_DOC_BUILD_HTML does not appear in AM_CONDITIONAL
doc/Makefile.am:132:   `gtk-doc.make' included from here
gtk-doc.make:57: GTK_DOC_BUILD_PDF does not appear in AM_CONDITIONAL
doc/Makefile.am:132:   `gtk-doc.make' included from here
gtk-doc.make:212: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
doc/Makefile.am:132:   `gtk-doc.make' included from here
doc/Makefile.am:145: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
make: *** [Makefile.in] Error 1
Comment 1 Craig Keogh 2011-02-05 07:07:05 UTC
Created attachment 180158 [details] [review]
Honor aclocal flags