summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Emm. Katsoulakis <34388743+paulkatsoulakis@users.noreply.github.com>2019-08-16 11:31:46 +0300
committerGitHub <noreply@github.com>2019-08-16 11:31:46 +0300
commitf2e1b090fd565392e2c482bb56290357687df44e (patch)
tree84cab4dd3e2d63af2f6c96c32faee52c4998d12f /.travis
parent236396c96df6fe70907a5a0c48a265a0db37b104 (diff)
netdata/packaging: [ci skip] Correlate configure command (#6678)
Overriding as i will be closely monitoring the results
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/create_artifacts.sh2
-rwxr-xr-x.travis/package_management/common.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis/create_artifacts.sh b/.travis/create_artifacts.sh
index 9670f229a4..8704811b69 100755
--- a/.travis/create_artifacts.sh
+++ b/.travis/create_artifacts.sh
@@ -40,7 +40,7 @@ BASENAME="netdata-$(git describe)"
python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'
echo "--- Create tarball ---"
autoreconf -ivf
-./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --with-zlib --with-math --with-user=netdata CFLAGS=-O2
+./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/libexec --with-zlib --with-math --with-user=netdata CFLAGS=-O2
make dist
mv "${BASENAME}.tar.gz" artifacts/
diff --git a/.travis/package_management/common.py b/.travis/package_management/common.py
index 6e7a260230..68a16803cf 100755
--- a/.travis/package_management/common.py
+++ b/.travis/package_management/common.py
@@ -146,7 +146,7 @@ def prepare_version_source(dest_archive, pkg_friendly_version, tag=None):
run_command_in_host(['autoreconf', '-ivf'])
print(".4 Run configure")
- run_command_in_host(['./configure', '--with-math', '--with-zlib', '--with-user=netdata'])
+ run_command_in_host(['./configure', '--prefix=/usr', '--sysconfdir=/etc', '--localstatedir=/var', '--libexecdir=/usr/libexec', '--with-math', '--with-zlib', '--with-user=netdata'])
print(".5 Run make dist")
run_command_in_host(['make', 'dist'])