We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22e4de1 commit 91a8685Copy full SHA for 91a8685
presto-native-execution/scripts/setup-centos.sh
@@ -19,7 +19,6 @@ export CC=/opt/rh/gcc-toolset-12/root/bin/gcc
19
export CXX=/opt/rh/gcc-toolset-12/root/bin/g++
20
21
WGET_OPTIONS=${WGET_OPTIONS:-""}
22
-TAR_OPTIONS=${TAR_OPTIONS:-"-v"}
23
24
CPU_TARGET="${CPU_TARGET:-avx}"
25
SCRIPT_DIR=$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")
@@ -38,7 +37,7 @@ function install_presto_deps_from_package_managers {
38
37
39
function install_gperf {
40
wget ${WGET_OPTIONS} http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz &&
41
- tar ${TAR_OPTIONS} -xzf gperf-3.1.tar.gz &&
+ tar -xzf gperf-3.1.tar.gz &&
42
cd gperf-3.1 &&
43
./configure --prefix=/usr/local/gperf/3_1 &&
44
make "-j$(nproc)" &&
0 commit comments