summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-04-03 11:40:31 -0400
committerGitHub <noreply@github.com>2020-04-03 11:40:31 -0400
commit1841d37354138184b0182751ac9262bc562c5843 (patch)
treef3267764167364adfd09d67c0183279964606caf /.travis
parentba56c8b107aa5ddacf031f285337e1cd24a0ac0c (diff)
Correctly fixed RPM package builds on Fedora. (#8595)
* Revert "Fix broken Fedora 30/31 RPM builds (#8572)" This reverts commit 71290d9cb904e8ea08456e5c4ab24bc274e593bf. It didn't actually fix things and caused a different set of issues. * Build LWS and mosquitto with -fPIC in RPM builds. This fixeslinking errors that are currently causing RPM package build failures for Fedora 30/31.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/package_management/trigger_rpm_lxc_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/package_management/trigger_rpm_lxc_build.py b/.travis/package_management/trigger_rpm_lxc_build.py
index 2da51cfaf4..f9e109c729 100755
--- a/.travis/package_management/trigger_rpm_lxc_build.py
+++ b/.travis/package_management/trigger_rpm_lxc_build.py
@@ -50,6 +50,6 @@ common.run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "rpmdev
# Run the build process on the container
print("Starting RPM build process")
-common.run_command(container, ["sudo", "-E", "-u", os.environ['BUILDER_NAME'], "rpmbuild", "-ba", "--rebuild", "/home/%s/rpmbuild/SPECS/netdata.spec" % os.environ['BUILDER_NAME']])
+common.run_command(container, ["sudo", "-u", os.environ['BUILDER_NAME'], "rpmbuild", "-ba", "--rebuild", "/home/%s/rpmbuild/SPECS/netdata.spec" % os.environ['BUILDER_NAME']])
print('Done!')