diff options
author | Christoph J. Thompson <cjsthompson@gmail.com> | 2013-04-15 15:48:19 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-04-28 16:42:48 +0200 |
commit | 77cad8e716e6023e1042c21cb2fe12b3a81f295d (patch) | |
tree | a2eab6f9e6479801fc30524edfe91aacc12dc5d6 /plugins | |
parent | 700d699f5bbd98d994ae81c3d3f863f8be0c98c2 (diff) |
Don't hardcode "plugins" as the subdirectory for plugins in many
places. modified: config-win32.h modified: configure.ac modified: plugins/checksum/Makefile.am modified: plugins/doat/Makefile.am modified: plugins/fishlim/Makefile.am modified: plugins/perl/Makefile.am modified: plugins/python/Makefile.am modified: plugins/sysinfo/Makefile.am modified: plugins/xdcc/Makefile.am modified: src/common/plugin.c modified: src/fe-text/fe-text.c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/checksum/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/doat/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/fishlim/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/perl/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/python/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/sysinfo/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/xdcc/Makefile.am | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/plugins/checksum/Makefile.am b/plugins/checksum/Makefile.am index b834327e..419c762f 100644 --- a/plugins/checksum/Makefile.am +++ b/plugins/checksum/Makefile.am @@ -1,4 +1,4 @@ -libdir = $(hexchatlibdir)/plugins +libdir = $(hexchatlibdir) lib_LTLIBRARIES = checksum.la checksum_la_SOURCES = checksum.c diff --git a/plugins/doat/Makefile.am b/plugins/doat/Makefile.am index 07aa8569..abfca29e 100644 --- a/plugins/doat/Makefile.am +++ b/plugins/doat/Makefile.am @@ -1,4 +1,4 @@ -libdir = $(hexchatlibdir)/plugins +libdir = $(hexchatlibdir) lib_LTLIBRARIES = doat.la doat_la_SOURCES = doat.c diff --git a/plugins/fishlim/Makefile.am b/plugins/fishlim/Makefile.am index bc921fb3..49a79160 100644 --- a/plugins/fishlim/Makefile.am +++ b/plugins/fishlim/Makefile.am @@ -1,6 +1,6 @@ EXTRA_DIST = INSTALL LICENSE README -libdir = $(hexchatlibdir)/plugins +libdir = $(hexchatlibdir) lib_LTLIBRARIES = fishlim.la fishlim_la_SOURCES = fish.c irc.c keystore.c misc.c plugin_hexchat.c diff --git a/plugins/perl/Makefile.am b/plugins/perl/Makefile.am index f9681bd2..02f29252 100644 --- a/plugins/perl/Makefile.am +++ b/plugins/perl/Makefile.am @@ -2,7 +2,7 @@ EXTRA_DIST=alt_completion.pl generate_header lib/Xchat.pm lib/Xchat/Embed.pm lib/Xchat/List/Network.pm \ lib/Xchat/List/Network/Entry.pm lib/Xchat/List/Network/AutoJoin.pm lib/IRC.pm -libdir = $(hexchatlibdir)/plugins +libdir = $(hexchatlibdir) lib_LTLIBRARIES = perl.la perl_la_SOURCES = perl.c diff --git a/plugins/python/Makefile.am b/plugins/python/Makefile.am index 5a97c2b5..259f2a0f 100644 --- a/plugins/python/Makefile.am +++ b/plugins/python/Makefile.am @@ -1,6 +1,6 @@ EXTRA_DIST = -libdir = $(hexchatlibdir)/plugins +libdir = $(hexchatlibdir) lib_LTLIBRARIES = python.la python_la_SOURCES = python.c diff --git a/plugins/sysinfo/Makefile.am b/plugins/sysinfo/Makefile.am index c37b0d84..0b8d7fad 100644 --- a/plugins/sysinfo/Makefile.am +++ b/plugins/sysinfo/Makefile.am @@ -1,4 +1,4 @@ -libdir = $(hexchatlibdir)/plugins +libdir = $(hexchatlibdir) lib_LTLIBRARIES = sysinfo.la sysinfo_la_SOURCES = hwmon.c match.c parse.c pci.c xsys.c diff --git a/plugins/xdcc/Makefile.am b/plugins/xdcc/Makefile.am index 9e0cf713..dd858e4d 100644 --- a/plugins/xdcc/Makefile.am +++ b/plugins/xdcc/Makefile.am @@ -1,4 +1,4 @@ -libdir = $(hexchatdir)/plugins +libdir = $(hexchatdir) lib_LTLIBRARIES = xdcc.la xdcc_la_SOURCES = xdcc.c |