Skip to content
Snippets Groups Projects
Commit 64905c0d authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Ivana:

filter out -I/usr/include.


git-svn-id: http://root.cern.ch/svn/root/trunk@42474 27541ba8-7e3a-0410-8455-c3a389f83636
parent f8d788c9
No related merge requests found
......@@ -7,10 +7,10 @@ $(DICT):
@echo "Generating $@"
@[ -d $(dir $@) ] || mkdir -p $(dir $@)
ifeq ($(CXXVERBOSE),)
@rootcint -f $@ -c $(CXXFLAGS) $^
@rootcint -f $@ -c $(filter-out -I/usr/include,$(CXXFLAGS)) $^
# @rootcint -f $@ -c $(filter -I%,$(CXXFLAGS)) $(filter -D%,$(CXXFLAGS)) $^
else
rootcint -f $@ -c $(CXXFLAGS) $^
rootcint -f $@ -c $(filter-out -I/usr/include,$(CXXFLAGS)) $^
endif
$(SLIBRARY):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment