Regen charmonizer for Python details.
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/99e208eb Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/99e208eb Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/99e208eb Branch: refs/heads/py_exp1 Commit: 99e208eb7bf18d295725d87dcdf6b1ef7cdba5f0 Parents: f4e841c Author: Marvin Humphrey <[email protected]> Authored: Tue Dec 16 09:55:52 2014 -0800 Committer: Marvin Humphrey <[email protected]> Committed: Tue Dec 16 09:56:49 2014 -0800 ---------------------------------------------------------------------- runtime/common/charmonizer.c | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/99e208eb/runtime/common/charmonizer.c ---------------------------------------------------------------------- diff --git a/runtime/common/charmonizer.c b/runtime/common/charmonizer.c index ebae413..8da75b6 100644 --- a/runtime/common/charmonizer.c +++ b/runtime/common/charmonizer.c @@ -7929,6 +7929,15 @@ cfish_MakeFile_new(chaz_CLI *cli) { self->host_src_dir = "ext"; self->autogen_src_files = go_autogen_src_files; } + else if (strcmp(chaz_CLI_strval(cli, "host"), "python") == 0) { + static const char *python_autogen_src_files[] = { + "cfish_parcel", + "testcfish_parcel", + NULL + }; + self->host_src_dir = "cfext"; + self->autogen_src_files = python_autogen_src_files; + } else if (chaz_CLI_defined(cli, "enable-perl")) { static const char *perl_autogen_src_files[] = { "boot",
