diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-14 16:23:53 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-14 16:23:53 +0000 |
commit | d8b775d2c4d9121e67952a3b81d59fdfdd4619ac (patch) | |
tree | 44f84dd34fb5fdf07b403403196d1629684d2d7b /src/plugins/scripts/python | |
parent | f6ff17ebb0a990e517454e92f3879684b459fef6 (diff) | |
download | weechat-d8b775d2c4d9121e67952a3b81d59fdfdd4619ac.zip |
Renamed plugins names (removed "lib" prefix in name)
Diffstat (limited to 'src/plugins/scripts/python')
-rw-r--r-- | src/plugins/scripts/python/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/scripts/python/Makefile.am b/src/plugins/scripts/python/Makefile.am index ba8a445ae..63413fb5c 100644 --- a/src/plugins/scripts/python/Makefile.am +++ b/src/plugins/scripts/python/Makefile.am @@ -19,8 +19,8 @@ INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(PYTHON_CFLAGS) libdir = ${weechat_libdir}/plugins -lib_LTLIBRARIES = libpython.la +lib_LTLIBRARIES = python.la -libpython_la_SOURCES = weechat-python.c -libpython_la_LDFLAGS = -module -libpython_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PYTHON_LFLAGS) +python_la_SOURCES = weechat-python.c +python_la_LDFLAGS = -module +python_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PYTHON_LFLAGS) |