Index: trunk/phase3/maintenance/hiphop/make |
— | — | @@ -54,6 +54,11 @@ |
55 | 55 | ' --output-dir=' . wfEscapeShellArg( $outDir ) . |
56 | 56 | ' --log=3' ); |
57 | 57 | |
| 58 | + # Sanity check, quickly make sure we've got an output directory |
| 59 | + if( !is_dir( $outDir ) ) { |
| 60 | + $this->error( "No output directory", true ); |
| 61 | + } |
| 62 | + |
58 | 63 | # Copy the generated C++ files into the source directory for cmake |
59 | 64 | $iter = new RecursiveIteratorIterator( |
60 | 65 | new RecursiveDirectoryIterator( $outDir ), |