Merge "DO NOT MERGE: Fix the build by ignoring directories that don't exist." into gingerbread

This commit is contained in:
Bill Napier 2010-08-25 10:00:59 -07:00 committed by Android (Google) Code Review
commit 0962b71980
1 changed files with 1 additions and 0 deletions

View File

@ -579,6 +579,7 @@ public class DroidDoc
File f = new File(htmlDir);
if (!f.isDirectory()) {
System.err.println("htmlDir not a directory: " + htmlDir);
continue;
}
writeDirectory(f, "");
}