summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-08-17 14:25:45 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-08-17 14:25:45 +0000
commitae789730159b665971b551287a85a85c1c7eaa9a (patch)
treecad85a939a3ee50f4b7149830d056eb5cf89568a /bin/ebuild-helpers
parentcb1ad77ff926488cd975bf31e357373ad9c19981 (diff)
downloadportage-ae789730159b665971b551287a85a85c1c7eaa9a.tar.gz
portage-ae789730159b665971b551287a85a85c1c7eaa9a.tar.bz2
portage-ae789730159b665971b551287a85a85c1c7eaa9a.zip
Add 'return False' which was missing from the previous commit.
svn path=/main/trunk/; revision=14076
Diffstat (limited to 'bin/ebuild-helpers')
-rwxr-xr-xbin/ebuild-helpers/dohtml1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/ebuild-helpers/dohtml b/bin/ebuild-helpers/dohtml
index d4f245ba2..be3716d8e 100755
--- a/bin/ebuild-helpers/dohtml
+++ b/bin/ebuild-helpers/dohtml
@@ -61,6 +61,7 @@ def install(basename, dirname, options, prefix=""):
if not os.path.exists(fullpath):
sys.stderr.write("!!! dohtml: %s does not exist\n" % fullpath)
+ return False
elif os.path.isfile(fullpath):
ext = os.path.splitext(basename)[1]
if (len(ext) and ext[1:] in options.allowed_exts) or basename in options.allowed_files: