From: Richard Jones Date: Thu, 19 Nov 2009 16:59:56 +0000 (+0000) Subject: syntax-check: Fix tab-vs-space issue in the generator. X-Git-Tag: 1.0.80~91 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=986541c26ddeec7583cfb41412d4edaef60703a2;hp=b7423df56e12180df27dfc033ed2e4eae1f0175c syntax-check: Fix tab-vs-space issue in the generator. --- diff --git a/src/generator.ml b/src/generator.ml index e3584cc..4bf5aec 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -10188,15 +10188,15 @@ let () = try Unix.openfile "HACKING" [Unix.O_RDWR] 0 with | Unix.Unix_error (Unix.ENOENT, _, _) -> - eprintf "\ + eprintf "\ You are probably running this from the wrong directory. Run it from the top source directory using the command src/generator.ml "; - exit 1 + exit 1 | exn -> - perror "open: HACKING" exn; - exit 1 in + perror "open: HACKING" exn; + exit 1 in (* Acquire a lock so parallel builds won't try to run the generator * twice at the same time. Subsequent builds will wait for the first