summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_patch_pre.subr
diff options
context:
space:
mode:
Diffstat (limited to 'subr/pkg_patch_pre.subr')
-rw-r--r--subr/pkg_patch_pre.subr3
1 files changed, 1 insertions, 2 deletions
diff --git a/subr/pkg_patch_pre.subr b/subr/pkg_patch_pre.subr
index f3402fcd..f6ab9f05 100644
--- a/subr/pkg_patch_pre.subr
+++ b/subr/pkg_patch_pre.subr
@@ -7,11 +7,10 @@ pkg_patch_pre() {
for __ in \
${MIDIPIX_BUILD_PWD}/../${PKG_SUBDIR}_pre.local.patch \
${MIDIPIX_BUILD_PWD}/../${PKG_SUBDIR}_pre.local@${BUILD_HNAME}.patch \
- ${WORKDIR}/chainport/${PKG_SUBDIR}_pre.midipix.patch \
${MIDIPIX_BUILD_PWD}/patches/${PKG_SUBDIR}_pre.local.patch \
${MIDIPIX_BUILD_PWD}/patches/${PKG_SUBDIR}_pre.local@${BUILD_HNAME}.patch; do
if [ -r "${__}" ]; then
- patch -b -d "${WORKDIR}/${PKG_SUBDIR}" -p1 < "${__}";
+ patch -b -d "${PKG_BASE_DIR}/${PKG_SUBDIR}" -p1 < "${__}";
fi;
done;
};