GNOME Bugzilla – Bug 641461
configure should honor aclocal flags ACLOCAL_FLAGS
Last modified: 2011-05-03 17:44:06 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
Created attachment 180054 [details] [review] Honor aclocal flags
(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. ...