summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-11-25 15:52:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-11-25 17:25:21 +0100
commit5b0b08e49ad344ceb043e0cdd1e45b0aea3f559c (patch)
tree35e5736b7f559cbaf7ffadfb16220db7ca691ca5 /autogen.sh
parentc59a5b81e9521a92587e701bcad82bf643b00493 (diff)
Better way of enabling Developer Toolset 7 for Jenkins' linux_gcc_release_64
Enabling it in the relevant distro-configs/Jenkins/* file is more intuitive than enabling it in autogen.sh (and avoids issues like d057e61cb5aae15ea37ce9ac824647cd2060e331 "Restrict Developer Toolset to Config=linux_gcc_release_64"), and will also be used for other Jenkins jobs like <https://gerrit.libreoffice.org/#/c/63982/> "Enabling Developer Toolset 7 for Jenkins' lo_tb_master_linux_dbg". Change-Id: If633044a90c35a12a73d60335839af0a106aa20f Reviewed-on: https://gerrit.libreoffice.org/63989 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh
index 98dcb950886e..8c0bb0ade4ba 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -151,13 +151,6 @@ if (defined $ENV{LODE_HOME})
$ENV{PATH}="$ENV{LODE_HOME}/opt/bin:$ENV{PATH}";
print STDERR "add LODE_HOME/opt/bin in PATH\n";
}
- # For the Config=linux_gcc_release_64 Jenkins jobs that build on CentOS against Developer
- # Toolset 7:
- if ($ENV{Config} eq 'linux_gcc_release_64' && -d '/opt/rh/devtoolset-7/root/usr/bin')
- {
- $ENV{PATH}="/opt/rh/devtoolset-7/root/usr/bin:$ENV{PATH}";
- print STDERR "added /opt/rh/devtoolset-7/root/usr/bin to PATH\n";
- }
}
my $aclocal_flags = $ENV{ACLOCAL_FLAGS};