This is an automated email from the ASF dual-hosted git repository. bneradt pushed a commit to branch dev-1-0-14 in repository https://gitbox.apache.org/repos/asf/trafficserver-libswoc.git
commit e92f175b2b6b8a7a805bcddcfad50306e31422cb Author: Alan M. Carroll <[email protected]> AuthorDate: Fri Feb 28 15:51:58 2020 -0600 Build fixes. --- swoc++/swoc++-shared.part | 1 - swoc++/swoc++-static.part | 1 - swoc++/swoc++.part | 2 ++ 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/swoc++/swoc++-shared.part b/swoc++/swoc++-shared.part index 4b5ddfb..df0b7d3 100644 --- a/swoc++/swoc++-shared.part +++ b/swoc++/swoc++-shared.part @@ -11,7 +11,6 @@ env.AppendUnique( # build the library out = env.SharedLibrary("libswoc++", src_files) env.InstallLib(out) -env.InstallInclude(env.get("inc_files")) # Export the package config. pc_file = env.Substfile("libswoc++.pc", "libswoc++.pc.in" diff --git a/swoc++/swoc++-static.part b/swoc++/swoc++-static.part index 62b38ba..e7defe3 100644 --- a/swoc++/swoc++-static.part +++ b/swoc++/swoc++-static.part @@ -11,7 +11,6 @@ env.AppendUnique( # build the library out = env.StaticLibrary("libswoc++", src_files) env.InstallLib(out) -env.InstallInclude(env.get("inc_files")) # Export the package config. pc_file = env.Substfile("libswoc++-static.pc", "libswoc++-static.pc.in" diff --git a/swoc++/swoc++.part b/swoc++/swoc++.part index 19013cb..4c4df61 100644 --- a/swoc++/swoc++.part +++ b/swoc++/swoc++.part @@ -16,6 +16,8 @@ src_files = [ # export the include directory inc_files = Pattern(src_dir="include/swoc", includes=["*.h"]) +#env.InstallInclude(env.get("inc_files")) +env.InstallInclude(inc_files) env.AppendUnique( CCFLAGS=['-std=c++17' ],
