summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Emm. Katsoulakis <34388743+paulkatsoulakis@users.noreply.github.com>2019-08-16 22:19:09 +0300
committerGitHub <noreply@github.com>2019-08-16 22:19:09 +0300
commitdac249d3d13bfed73daa83e408efe0f1d490b5b1 (patch)
treef955c7069698682e16a34732686831f4b27ce80b /.travis
parent4a9deb161a992d7bc7f1546b3d240d05c2bd29f9 (diff)
netdata/packaging: Align libdir in all configure commands (#6682)
* netdata/packaging: Align libdir with the one we expect our installation to use, following the rest of the directory correllations * netdata/packaging:[ci skip] One more
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/package_management/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/package_management/common.py b/.travis/package_management/common.py
index 58c999f216..a72fe48376 100755
--- a/.travis/package_management/common.py
+++ b/.travis/package_management/common.py
@@ -147,7 +147,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', '--prefix=/usr', '--sysconfdir=/etc', '--localstatedir=/var', '--libexecdir=/usr/libexec', '--with-math', '--with-zlib', '--with-user=netdata'])
+ run_command_in_host(['./configure', '--prefix=/usr', '--sysconfdir=/etc', '--localstatedir=/var', '--libdir=/usr/lib', '--libexecdir=/usr/libexec', '--with-math', '--with-zlib', '--with-user=netdata'])
print(".5 Run make dist")
run_command_in_host(['make', 'dist'])