lhost / sendxmpp

perl-script to send xmpp (jabber), similar to what mail(1) does for mail.
64 stars 22 forks source link

Makefile.PL Line 16 is missing a semicolon #15

Closed jaykao0918 closed 9 years ago

jaykao0918 commented 9 years ago

I think Makefile.PL is missing a semicolon at the end of line 16, making it unable to run.

TrurlMcByte commented 9 years ago
diff --git a/Makefile.PL b/Makefile.PL
index bdcfe22..9c54cf4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -13,7 +13,7 @@ WriteMakefile (
        ABSTRACT => 'Script for sending XMPP messages (Jabber client)',
        PREREQ_PM => {
                'Getopt::Long'          => 2.00,
-               'Net::XMPP'                     => 1.0
+               'Net::XMPP'                     => 1.0,
                'AnyEvent::XMPP'        => 0.55,
        },
        VERSION_FROM => 'sendxmpp',
lhost commented 9 years ago

Fixed in 4114203d91323e46b8c95e2c839a49ad6f6a587c. Please use pull request next time. Thanks.