summaryrefslogtreecommitdiffstats
path: root/redhat/build/get_specfile.sh
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2014-03-08 10:36:59 +0100
committerFrançois Andriot <albator78@libertysurf.fr>2014-03-08 10:36:59 +0100
commitd9c948c7660fd487f81da3e864cd1e7e7811649b (patch)
tree2f7fc6d7b5ec2eed49702396df125b08e580cea4 /redhat/build/get_specfile.sh
parent420b1189896aae59757997087773c8488b7c0c3b (diff)
downloadtde-packaging-d9c948c7660fd487f81da3e864cd1e7e7811649b.tar.gz
tde-packaging-d9c948c7660fd487f81da3e864cd1e7e7811649b.zip
RPM packaging: update build script
Diffstat (limited to 'redhat/build/get_specfile.sh')
-rwxr-xr-xredhat/build/get_specfile.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/redhat/build/get_specfile.sh b/redhat/build/get_specfile.sh
index d60748604..8f4b542e0 100755
--- a/redhat/build/get_specfile.sh
+++ b/redhat/build/get_specfile.sh
@@ -5,23 +5,23 @@ TDE_VERSION="${2:-14.0.0}"
[ -z "${PKGNAME}" ] && echo "You must specify a package name !" && exit 1
-[ -d "${TDE_SPECDIR}" ] || TDE_SPECDIR=~/tde/tde-packaging/redhat
+[ -d "${PACKAGING_DIR}" ] || PACKAGING_DIR=~/tde/tde-packaging/redhat
# Special case for QT3
if [ "${PKGNAME}" = "qt3" ]; then
case "$(rpmdist.sh --dist)" in
- .oss*) TDE_SPECDIR=~/tde/tde-packaging/opensuse ;;
- .mga*|.mdk*|.pclos*) TDE_SPECDIR=~/tde/tde-packaging/mageia ;;
+ .oss*) PACKAGING_DIR=~/tde/tde-packaging/opensuse ;;
+ .mga*|.mdk*|.pclos*) PACKAGING_DIR=~/tde/tde-packaging/mageia ;;
esac
fi
-SPECFILE=$(find "${TDE_SPECDIR}" -name "${PKGNAME}-${TDE_VERSION}.spec")
+SPECFILE=$(find "${PACKAGING_DIR}" -name "${PKGNAME}-${TDE_VERSION}.spec")
if [ ! -r "${SPECFILE}" ]; then
- SPECFILE=$(find "${TDE_SPECDIR}" -name "${PKGNAME}.spec")
+ SPECFILE=$(find "${PACKAGING_DIR}" -name "${PKGNAME}.spec")
if [ ! -r "${SPECFILE}" ]; then
- SPECFILE=$(find "${TDE_SPECDIR}" -name "trinity-${PKGNAME}-${TDE_VERSION}.spec")
+ SPECFILE=$(find "${PACKAGING_DIR}" -name "trinity-${PKGNAME}-${TDE_VERSION}.spec")
if [ ! -r "${SPECFILE}" ]; then
- SPECFILE=$(find "${TDE_SPECDIR}" -name "trinity-${PKGNAME}.spec")
+ SPECFILE=$(find "${PACKAGING_DIR}" -name "trinity-${PKGNAME}.spec")
fi
fi
fi