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 641461 - configure should honor aclocal flags ACLOCAL_FLAGS
configure should honor aclocal flags ACLOCAL_FLAGS
Status: RESOLVED FIXED
Product: libnotify
Classification: Platform
Component: general
git master
Other Linux
: Normal enhancement
: ---
Assigned To: William Jon McCann
Depends on:
Blocks: 641445
 
 
Reported: 2011-02-04 09:38 UTC by Craig Keogh
Modified: 2011-05-03 17:44 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Honor aclocal flags (526 bytes, patch)
2011-02-04 09:39 UTC, Craig Keogh
none Details | Review

Description Craig Keogh 2011-02-04 09:38:12 UTC
I'm building gdk-pixbuf via JHBuild. gdk-pixbuf 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/libnotify/missing --run aclocal-1.11 -I m4
configure.ac:6: warning: AC_INIT: not a literal: https://bugzilla.gnome.org/enter_bug.cgi?product=libnotify
 cd . && /bin/sh /home/Oxyde/gnome/libnotify/missing --run automake-1.11 --gnu
configure.ac:6: warning: AC_INIT: not a literal: https://bugzilla.gnome.org/enter_bug.cgi?product=libnotify
libnotify/Makefile.am:84: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
libnotify/Makefile.am:117: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
make: *** [Makefile.in] Error 1
Comment 1 Craig Keogh 2011-02-04 09:39:10 UTC
Created attachment 180054 [details] [review]
Honor aclocal flags
Comment 2 Craig Keogh 2011-02-04 09:40:36 UTC
(In reply to comment #0)
> I'm building gdk-pixbuf via JHBuild. gdk-pixbuf builds

Copy and paste error. I mean:

I'm building libnotify via JHBuild. libnotify builds successfully. If upstream then updates configure.in, then I run 'make', which
attempts a reconfigure, but fails.
...