diff options
author | Lennart Weller <lhw@ring0.de> | 2016-09-05 08:27:26 +0000 |
---|---|---|
committer | Lennart Weller <lhw@ring0.de> | 2016-09-05 08:27:26 +0000 |
commit | 58d9525d7fcacffe52eff7282b7a888dd0dcc1d0 (patch) | |
tree | 251a805eb38d4d75b2a7f44c2cc22e7ea4849513 /Makefile.in | |
parent | Fixes for service startup and extra config files (diff) | |
parent | Imported Upstream version 1.3.0+dfsg (diff) | |
download | netdata-58d9525d7fcacffe52eff7282b7a888dd0dcc1d0.tar.xz netdata-58d9525d7fcacffe52eff7282b7a888dd0dcc1d0.zip |
Merge tag 'upstream/1.3.0+dfsg'
Upstream version 1.3.0+dfsg
Diffstat (limited to '')
-rw-r--r-- | Makefile.in | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 9cfa9bead..c4dd9b3ff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -318,6 +318,8 @@ pluginsdir = @pluginsdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +pythondir = @pythondir@ +registrydir = @registrydir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -353,7 +355,6 @@ EXTRA_DIST = \ LICENSE.md \ COPYING \ autogen.sh \ - netdata-9999.ebuild \ tests/stress.sh \ $(NULL) @@ -362,17 +363,27 @@ SUBDIRS = \ conf.d \ node.d \ plugins.d \ + python.d \ src \ system \ web \ contrib \ $(NULL) -dist_noinst_DATA = netdata.spec +dist_noinst_DATA = \ + configs.signatures \ + Dockerfile \ + netdata.spec \ + $(NULL) + # until integrated within build # should be proper init.d/openrc/systemd usable -dist_noinst_SCRIPTS = netdata-installer.sh +dist_noinst_SCRIPTS = \ + docker-build.sh \ + netdata-installer.sh \ + $(NULL) + all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive |