mirror of https://github.com/krallin/tini.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
592 B
22 lines
592 B
10 years ago
|
#!/bin/bash
|
||
|
# Wrapper for rpm build that first removes files that should be in there
|
||
|
# We need this for compatibility with CMake <= 2.8.10 (which is the only version we have in Travis)
|
||
|
# See: http://www.cmake.org/pipermail/cmake-commits/2013-April/014818.html
|
||
|
set -o nounset
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
|
||
|
# Remove PATH hack so we can find the real rpmbuild
|
||
|
export PATH="${REAL_PATH}"
|
||
|
|
||
|
echo "Using local rpmbuild"
|
||
|
|
||
|
specFile="${!#}" # Last argument
|
||
|
|
||
|
for removeLine in '"/usr"' '"/usr/bin"'; do
|
||
|
sed -i "s|${removeLine}||g" "${specFile}"
|
||
|
done
|
||
|
|
||
|
# Passthrough to rpmbuild
|
||
|
exec rpmbuild "${@}"
|