diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-05-01 18:53:23 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-05-01 18:53:23 +0000 |
commit | eda55fbdb41a695dc4a5d511f2ccf20a3a99470f (patch) | |
tree | 55fccde93927cbd089e3845797f9e913d91654ce /src/plugins/Makefile.am | |
parent | dca4064502ebdc9d2d9fbdaa31c1b4a717ca96ae (diff) | |
download | weechat-eda55fbdb41a695dc4a5d511f2ccf20a3a99470f.zip |
Added Python plugin support
Diffstat (limited to 'src/plugins/Makefile.am')
-rw-r--r-- | src/plugins/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am index 823b41475..b52375faf 100644 --- a/src/plugins/Makefile.am +++ b/src/plugins/Makefile.am @@ -21,16 +21,16 @@ if PLUGIN_PERL perl_dir = perl endif -# if PLUGIN_PYTHON -# python_dir = python -# endif +if PLUGIN_PYTHON +python_dir = python +endif # if PLUGIN_RUBY # ruby_dir = ruby # endif # SUBDIRS = $(perl_dir) $(python_dir) $(ruby_dir) -SUBDIRS = $(perl_dir) +SUBDIRS = $(perl_dir) $(python_dir) noinst_LIBRARIES = lib_weechat_plugins.a |