projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6271cfe
)
doins: fix dodoc directory error handling
author
Zac Medico
<zmedico@gentoo.org>
Fri, 25 Feb 2011 20:32:21 +0000
(12:32 -0800)
committer
Zac Medico
<zmedico@gentoo.org>
Fri, 25 Feb 2011 20:32:21 +0000
(12:32 -0800)
bin/ebuild-helpers/doins
patch
|
blob
|
history
diff --git
a/bin/ebuild-helpers/doins
b/bin/ebuild-helpers/doins
index c549791fcc3dc01b2df2c8c0007c2326353dff39..0aedcb9e56ef5444365c3f71609b8b60e76bb810 100755
(executable)
--- a/
bin/ebuild-helpers/doins
+++ b/
bin/ebuild-helpers/doins
@@
-89,6
+89,10
@@
for x in "$@" ; do
if [[ $PRESERVE_SYMLINKS = n && -d $x ]] || \
[[ $PRESERVE_SYMLINKS = y && -d $x && ! -L $x ]] ; then
if [ "${DOINSRECUR}" == "n" ] ; then
+ if [[ ${0##*/} == dodoc ]] ; then
+ echo "!!! ${0##*/}: $x is a directory" 1>&2
+ ((failed|=1))
+ fi
continue
fi