From 2e067517036a59d97c45fe76cf3692238192742d Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Tue, 20 Sep 2016 16:38:19 +0200 Subject: [PATCH] eolian gen2: only generate eo c/h by default --- src/bin/eolian2/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/eolian2/main.c b/src/bin/eolian2/main.c index fb0773c649..321775e2a1 100644 --- a/src/bin/eolian2/main.c +++ b/src/bin/eolian2/main.c @@ -53,7 +53,7 @@ _print_usage(const char *progn, FILE *outf) " c: C source file (.eo.c)\n" " i: Implementation file (added into .eo.c)\n" "\n" - "By default, the 'hcl' set is used.\n" + "By default, the 'hc' set is used.\n" "Output filenames are determined from input .eo filename.\n"); } @@ -428,7 +428,7 @@ main(int argc, char **argv) const char *eobn = _get_filename(input); if (!gen_what) - gen_what = GEN_H | GEN_H_LEGACY | GEN_C; + gen_what = GEN_H | GEN_C; Eina_Bool succ = EINA_TRUE; if (gen_what & GEN_H)