Commit 2dcf599a authored by Julian Wiesener's avatar Julian Wiesener

allow dist specific overrides

parent 1b982062
......@@ -40,6 +40,9 @@ SBUILDDIR="${BUILDDIR}/archive/${VERSION}/${DEBRELEASE}"
if [ -f "${PREFIX}/dpkg/${PKGNAME}/overrides" ]; then
. "${PREFIX}/dpkg/${PKGNAME}/overrides"
fi
if [ -f "${PREFIX}/dpkg/${PKGNAME}/overrides.${DEBRELEASE}" ]; then
. "${PREFIX}/dpkg/${PKGNAME}/overrides.${DEBRELEASE}"
fi
FULL_VERSION="${VERSION}+${DEBRELEASE}"
if [ -z "${CHANGE_MSG}" ]; then
CHANGE_MSG="${DEFAULT_CHANGE_MSG}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment