diff options
author | 2012-02-21 15:05:28 +0000 | |
---|---|---|
committer | 2012-02-21 15:05:28 +0000 | |
commit | 8f4f01deaf9fad78ec0a6c9cd5928855109a054c (patch) | |
tree | 1daa52e966cceabfc6cace1e50032ea66fd9daaf /paludis | |
parent | 5484572bbf04e0008f3f9200dd9f082fb7d7c1ad (diff) | |
download | paludis-8f4f01deaf9fad78ec0a6c9cd5928855109a054c.tar.gz paludis-8f4f01deaf9fad78ec0a6c9cd5928855109a054c.tar.xz |
Don't try to dodoc directories.
Diffstat (limited to 'paludis')
-rw-r--r-- | paludis/repositories/e/ebuild/exheres-0/build_functions.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/repositories/e/ebuild/exheres-0/build_functions.bash b/paludis/repositories/e/ebuild/exheres-0/build_functions.bash index 313ff7bcd..d5c69b5c4 100644 --- a/paludis/repositories/e/ebuild/exheres-0/build_functions.bash +++ b/paludis/repositories/e/ebuild/exheres-0/build_functions.bash @@ -199,7 +199,7 @@ emagicdocs() ANNOUNCE PORTING NOTES PROBLEMS NOTICE "${DEFAULT_SRC_INSTALL_EXTRA_DOCS[@]}"; do for p in "${DEFAULT_SRC_INSTALL_EXTRA_PREFIXES[@]}" '' ; do for doc in "${p}"*([[:digit:]])"${f}"{,+([._-])*} ; do - if [[ -s "${doc}" ]] ; then + if [[ -s "${doc}" && ! -d "${doc}" ]] ; then for e in "${DEFAULT_SRC_INSTALL_EXCLUDE[@]}" ; do [[ ${doc} == ${e} ]] && continue 2 done |