diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2010-02-16 18:27:16 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2010-02-16 18:27:16 +0000 |
commit | dfd8dac146745c0d151dbd11a37e5b965157c107 (patch) | |
tree | e55bc650b60d72b991f68c305cf645b429401037 /devel/clang/files | |
parent | Record conflicts with firebird-client port (${PREFIX}/bin/isql). (diff) |
Only install compiler headers we don't provide as part of the BSD base.
This should fix some compilation problems and we've been doing it in
devel/llvm-devel for ages.
Feature safe: yes
Reported by: rdivacky
Diffstat (limited to 'devel/clang/files')
-rw-r--r-- | devel/clang/files/patch-tools_clang_lib_Headers_Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devel/clang/files/patch-tools_clang_lib_Headers_Makefile b/devel/clang/files/patch-tools_clang_lib_Headers_Makefile new file mode 100644 index 000000000000..3495644fd523 --- /dev/null +++ b/devel/clang/files/patch-tools_clang_lib_Headers_Makefile @@ -0,0 +1,14 @@ + +$FreeBSD: /tmp/pcvs/ports/devel/clang/files/Attic/patch-tools_clang_lib_Headers_Makefile,v 1.1 2010-02-16 18:27:16 brooks Exp $ + +--- tools/clang/lib/Headers/Makefile.orig ++++ tools/clang/lib/Headers/Makefile +@@ -13,7 +13,7 @@ + # FIXME: Get version from a common place. + HeaderDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib/clang/1.0/include + +-HEADERS := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.h)) ++HEADERS := $(notdir $(wildcard $(PROJ_SRC_DIR)/*mm*.h)) + + OBJHEADERS := $(addprefix $(HeaderDir)/, $(HEADERS)) + |