[hipl-commit] [trunk] Rev 4082: Do not check headers that are known to fail and cannot be fixed.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 30 Mar 2010 01:06:46 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 30/03/2010 at 01:06:46
Revision: 4082
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Do not check headers that are known to fail and cannot be fixed.

Modified:
  M  Makefile.am

=== modified file 'Makefile.am'
--- Makefile.am 2010-03-29 18:13:46 +0000
+++ Makefile.am 2010-03-29 22:06:31 +0000
@@ -638,7 +638,10 @@
        rm -f aclocal.m4 compile config.* configure depcomp install-sh
        rm -f ltmain.sh m4/*.m4 Makefile.in missing py-compile
 
-HIPL_HEADER_OBJS = $(HIPL_HEADER_LIST:.h=.ho)
+# Do not check headers that have issues we cannot fix.
+NOCHECK_HEADER_LIST = $(wildcard $(srcdir)/lib/gui/*.h 
$(srcdir)/lib/android/*.h)
+HIPL_HEADER_FILTERED = $(filter-out $(NOCHECK_HEADER_LIST),$(HIPL_HEADER_LIST))
+HIPL_HEADER_OBJS = $(subst 
$(srcdir),$(builddir),$(HIPL_HEADER_FILTERED:.h=.ho))
 CLEANFILES += $(HIPL_HEADER_OBJS)
 
 checkheaders: $(HIPL_HEADER_OBJS)

Other related posts:

  • » [hipl-commit] [trunk] Rev 4082: Do not check headers that are known to fail and cannot be fixed. - Diego Biurrun