TS-2885 Fix experimental builds, and add DIST_SUBDIRS where needed
Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/5379350a Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/5379350a Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/5379350a Branch: refs/heads/5.0.x Commit: 5379350a6b0bb2141aaa3ea94a4270cb18e32028 Parents: b1d0ffa Author: Leif Hedstrom <[email protected]> Authored: Fri Jun 13 11:18:26 2014 -0600 Committer: Bryan Call <[email protected]> Committed: Fri Jun 13 14:57:23 2014 -0700 ---------------------------------------------------------------------- lib/Makefile.am | 2 ++ plugins/Makefile.am | 7 +++---- 2 files changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/5379350a/lib/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/Makefile.am b/lib/Makefile.am index d054f44..ab09752 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -31,6 +31,8 @@ if ENABLE_CPPAPI SUBDIRS += atscppapi endif +DIST_SUBDIRS = $(SUBDIRS) + # Some special hacks around building the luajit. # # - Copy the luajit source tree if we're doing out-of-source builds http://git-wip-us.apache.org/repos/asf/trafficserver/blob/5379350a/plugins/Makefile.am ---------------------------------------------------------------------- diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 07da928..f2912d0 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -24,11 +24,10 @@ SUBDIRS = \ libloader \ regex_remap \ stats_over_http \ - tcpinfo \ - experimental + tcpinfo if BUILD_EXPERIMENTAL_PLUGINS - SUBDIRS += experimental - endif + +DIST_SUBDIRS = $(SUBDIRS)
