diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-06-04 15:40:22 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-06-04 15:40:22 -0700 |
commit | 8e08d3e4b8f00151b3a8b7eb88015dc15170e154 (patch) | |
tree | c97b447dcd7102c38a87a4b73f8118bda8d96a42 | |
parent | cd900e40b5676874d076c35466fd7baa6a49b1f6 (diff) |
Add $(AM_CFLAGS) to lint flags to get correct Xtrans flags
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0207a89..449aeaf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -41,7 +41,7 @@ iceinclude_HEADERS=\ if LINT ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) lint: $(LINT) $(ALL_LINT_FLAGS) $(libICE_la_SOURCES) $(XINERAMA_LIBS) |