Rename automatic patches to just "install.diff" or "build.diff".

--HG--
extra : convert_revision : 93ca1b8d614e75cc1df7e12735bde31b04c2e9d1
This commit is contained in:
Juan RP 2009-02-04 03:50:36 +01:00
parent 7c97804022
commit bcf9dff398
14 changed files with 4 additions and 4 deletions

View File

@ -32,11 +32,11 @@ apply_tmpl_patches()
local i=
# Apply some build/install patches automatically.
if [ -f $XBPS_TEMPLATESDIR/$pkgname/$pkgname-fix-build.diff ]; then
patch_files="$pkgname-fix-build.diff $patch_files"
if [ -f $XBPS_TEMPLATESDIR/$pkgname/build.diff ]; then
patch_files="build.diff $patch_files"
fi
if [ -f $XBPS_TEMPLATESDIR/$pkgname/$pkgname-fix-install.diff ]; then
patch_files="$pkgname-fix-install.diff $patch_files"
if [ -f $XBPS_TEMPLATESDIR/$pkgname/install.diff ]; then
patch_files="install.diff $patch_files"
fi
[ -z "$patch_args" ] && patch_args="-p0"