Bug 77869

Summary: [GTK] Make sure html_dir exists before calling gtkdoc-rebase
Product: WebKit Reporter: Carlos Garcia Campos <cgarcia>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: alex, pnormand
Priority: P2 Keywords: Gtk
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Linux   
Attachments:
Description Flags
Patch pnormand: review+

Description Carlos Garcia Campos 2012-02-06 06:29:56 PST
It doesn't exist during make distcheck, I had to fix it for 1.7.5 release.
Comment 1 Carlos Garcia Campos 2012-02-06 06:32:06 PST
Created attachment 125631 [details]
Patch
Comment 2 Carlos Garcia Campos 2012-02-06 06:54:57 PST
Committed r106805: <http://trac.webkit.org/changeset/106805>
Comment 3 Martin Robinson 2012-02-06 09:20:19 PST
Comment on attachment 125631 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=125631&action=review

> Tools/gtk/gtkdoc.py:361
> +        if not os.path.isdir(html_dir):
> +            return

This should probably raise an exception, so that the user knows the process failed.