diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-04-15 12:54:14 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-04-15 12:54:14 -0700 |
commit | 0a7ef798040b4139b00427843c342ceee82a7eee (patch) | |
tree | 0fbdce0d593f6872449bef8aca7462ca1b6c6113 /libexec/build-makedeps | |
parent | f46c55ef4a83a4566a4bdd112166b3c9a61f16cd (diff) |
Add .buildrules files to package dependencies
Diffstat (limited to 'libexec/build-makedeps')
-rwxr-xr-x | libexec/build-makedeps | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libexec/build-makedeps b/libexec/build-makedeps index 8784afb..9cf62fb 100755 --- a/libexec/build-makedeps +++ b/libexec/build-makedeps @@ -82,6 +82,10 @@ for package in $(echo "${BUILDER_PKGDIR}"/*/*); do unset file package_sources="${package_sources} ${RULESFILE}" + if test -f "${BUILDER_PKGDIR}/${CATEGORY}/.buildrules"; then + package_sources="${package_sources} ${BUILDER_PKGDIR}/${CATEGORY}/.buildrules" + fi + for patch in ${PATCHES}; do patch="${F}/${NAME}-${VERSION}-${patch}.patch" if ! test -f "${patch}"; then |