summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rwxr-xr-xshare/spack/qa/install_patchelf.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/share/spack/qa/install_patchelf.sh b/share/spack/qa/install_patchelf.sh
deleted file mode 100755
index 7660ba8eef..0000000000
--- a/share/spack/qa/install_patchelf.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
-# Spack Project Developers. See the top-level COPYRIGHT file for details.
-#
-# SPDX-License-Identifier: (Apache-2.0 OR MIT)
-
-#
-# Description:
-# Install patchelf for use in buildcache unit tests
-#
-# Usage:
-# install-patchelf.sh
-#
-set -ex
-if [ "$TRAVIS_OS_NAME" = "linux" ]; then
- olddir=$PWD
- cd /tmp
- wget https://github.com/NixOS/patchelf/archive/0.10.tar.gz
- tar -xvf 0.10.tar.gz
- cd patchelf-0.10 && ./bootstrap.sh && ./configure --prefix=/usr && make && sudo make install && cd $olddir
-fi