Repository: lucy-charmonizer Updated Branches: refs/heads/master 32a9483f5 -> c76e64621
Fix flags for --make option Project: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/commit/c76e6462 Tree: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/tree/c76e6462 Diff: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/diff/c76e6462 Branch: refs/heads/master Commit: c76e64621d885435bb4316d8a27dead9a39b5f0a Parents: 32a9483 Author: Nick Wellnhofer <[email protected]> Authored: Mon May 16 16:31:53 2016 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Mon May 16 16:31:53 2016 +0200 ---------------------------------------------------------------------- src/Charmonizer/Probe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/blob/c76e6462/src/Charmonizer/Probe.c ---------------------------------------------------------------------- diff --git a/src/Charmonizer/Probe.c b/src/Charmonizer/Probe.c index 1a574af..5aaa988 100644 --- a/src/Charmonizer/Probe.c +++ b/src/Charmonizer/Probe.c @@ -44,7 +44,7 @@ chaz_Probe_parse_cli_args(int argc, const char *argv[], chaz_CLI *cli) { chaz_CLI_register(cli, "enable-coverage", NULL, CHAZ_CLI_NO_ARG); chaz_CLI_register(cli, "cc", "compiler command", CHAZ_CLI_ARG_REQUIRED); chaz_CLI_register(cli, "cflags", NULL, CHAZ_CLI_ARG_OPTIONAL); - chaz_CLI_register(cli, "make", "make command", 0); + chaz_CLI_register(cli, "make", "make command", CHAZ_CLI_ARG_OPTIONAL); /* Parse options, exiting on failure. */ if (!chaz_CLI_parse(cli, argc, argv)) {
