GNOME Bugzilla – Bug 686126
Whitespace between "-I" and path not portable
Last modified: 2012-10-15 22:56:01 UTC
libcroco-0.6.6 src/Makefile.am has: libcroco_0_6_la_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/intl \ -I $(top_builddir)/src \ $(AM_CPPFLAGS) The whitespace between the last -I flag and its associated path is not fully portable to some compilers...they see it as an isolated -I flag (with no path) and then a loose directory-name (as if it were a source-file to compile). Quick-fix is to remove the space (the same construct used in the other -I fields there, for example): - -I $(top_builddir)/src \ + -I$(top_builddir)/src \
OK to commit the fix to master.
Fixed on master.