~ubuntu-branches/ubuntu/oneiric/ocsigen/oneiric

« back to all changes in this revision

Viewing changes to baselib/ocsigen_commandline.ml

  • Committer: Bazaar Package Importer
  • Author(s): Stephane Glondu
  • Date: 2009-07-02 10:02:08 UTC
  • mfrom: (1.1.9 upstream) (4.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090702100208-n158b1sqwzn0asil
Tags: 1.2.0-2
Fix build on non-native architectures

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
open Ocsigen_config
21
21
 
22
 
let _ = Arg.parse
 
22
let () = Arg.parse_argv Ocsigen_getcommandline.commandline
23
23
    [("-c", Arg.String set_configfile,
24
24
      "Alternate config file (default /etc/ocsigen/ocsigen.conf)");
25
25
     ("--config", Arg.String set_configfile,
38
38
   ]
39
39
    (fun _ -> ())
40
40
    "usage: ocsigen [-c configfile]"
41