changeset 14449:74cdcd0c58b5

[gaim-migrate @ 17163] Make Gaim::Gtk actually work in wingaim. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Tue, 05 Sep 2006 02:09:17 +0000
parents 8783ae8f649a
children 1a01b1dae517
files gtk/plugins/perl/common/Makefile.mingw libgaim/plugins/perl/scripts/request.pl
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/plugins/perl/common/Makefile.mingw	Mon Sep 04 23:26:50 2006 +0000
+++ b/gtk/plugins/perl/common/Makefile.mingw	Tue Sep 05 02:09:17 2006 +0000
@@ -89,10 +89,10 @@
 	$(MAKE) -C $(GAIM_LIB_PERL_TOP)/common -f $(GAIM_WIN32_MAKEFILE) install
 
 install: all $(GAIM_INSTALL_PERLMOD_DIR)/Gaim.pm
-	rm -f $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/$(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/$(TARGET).pm
+	rm -f $(GAIM_INSTALL_PERLMOD_DIR)/$(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/$(TARGET).pm
 	mkdir -p $(GAIM_INSTALL_PERLMOD_DIR)/Gaim
 	cp $(TARGET).pm $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/
-	cp $(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)/Gaim/
+	cp $(TARGET).dll $(GAIM_INSTALL_PERLMOD_DIR)
 
 $(C_FILES): $(GAIM_CONFIG_H)
 
--- a/libgaim/plugins/perl/scripts/request.pl	Mon Sep 04 23:26:50 2006 +0000
+++ b/libgaim/plugins/perl/scripts/request.pl	Tue Sep 05 02:09:17 2006 +0000
@@ -5,7 +5,7 @@
 # All the information Gaim gets about our nifty plugin
 %PLUGIN_INFO = (
 	perl_api_version => 2,
-	name => " Perl: $MODULE_NAME",
+	name => "Perl: $MODULE_NAME",
 	version => "0.1",
 	summary => "Test plugin for the Perl interpreter.",
 	description => "Implements a set of test proccedures to ensure all functions that work in the C API still work in the Perl plugin interface.  As XSUBs are added, this *should* be updated to test the changes.  Furthermore, this will function as the tutorial perl plugin.",