diff options
author | fanquake <fanquake@gmail.com> | 2022-02-11 15:26:17 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-02-14 13:59:09 +0000 |
commit | dbcaba835d04043528874c999e7c729f5c513ee9 (patch) | |
tree | ae4dcb9d0c733a42920e40b3e02850d3ce2b35d3 /depends | |
parent | 3ce40e64d4ae9419658555fd1fb250b93f52684a (diff) |
build: remove unused include dir from clang package
Diffstat (limited to 'depends')
-rw-r--r-- | depends/packages/native_clang.mk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/depends/packages/native_clang.mk b/depends/packages/native_clang.mk index 23c8139262..aa1130cfed 100644 --- a/depends/packages/native_clang.mk +++ b/depends/packages/native_clang.mk @@ -16,7 +16,6 @@ endef define $(package)_stage_cmds mkdir -p $($(package)_staging_prefix_dir)/lib/clang/$($(package)_version)/include && \ mkdir -p $($(package)_staging_prefix_dir)/bin && \ - mkdir -p $($(package)_staging_prefix_dir)/include && \ cp bin/clang $($(package)_staging_prefix_dir)/bin/ && \ cp -P bin/clang++ $($(package)_staging_prefix_dir)/bin/ && \ cp bin/dsymutil $($(package)_staging_prefix_dir)/bin/$(host)-dsymutil && \ @@ -24,7 +23,3 @@ define $(package)_stage_cmds cp lib/libLTO.so $($(package)_staging_prefix_dir)/lib/ && \ cp -rf lib/clang/$($(package)_version)/include/* $($(package)_staging_prefix_dir)/lib/clang/$($(package)_version)/include/ endef - -define $(package)_postprocess_cmds - rmdir include -endef |