From 8698407ad9b035657c21982f7febd9739fe6df8d Mon Sep 17 00:00:00 2001 From: jsatoh Date: Sun, 7 Apr 2013 06:37:29 +0000 Subject: [PATCH] 2013-04-07 Junichi Satoh * Makefile.PL: Changed library installation path for NetBSD. * pandora_server_installer: Fixed wrong permission of tentacle_server for BSD. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7937 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 7 +++++++ pandora_server/Makefile.PL | 2 +- pandora_server/pandora_server_installer | 2 ++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index b88fa52132..ff37e66973 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,10 @@ +2013-04-07 Junichi Satoh + + * Makefile.PL: Changed library installation path for NetBSD. + + * pandora_server_installer: Fixed wrong permission of tentacle_server + for BSD. + 2013-04-04 Junichi Satoh * pandora_server_installer: As the same as Linux, changed cron setting diff --git a/pandora_server/Makefile.PL b/pandora_server/Makefile.PL index bdd55496f3..64353127f8 100644 --- a/pandora_server/Makefile.PL +++ b/pandora_server/Makefile.PL @@ -7,7 +7,7 @@ WriteMakefile( ? (INSTALLSITELIB => '') : () ), ($^O eq 'netbsd') ? ( - INSTALLSITELIB => '/usr/pkg/lib/perl5', + INSTALLSITELIB => '', INSTALLSITESCRIPT => '/usr/local/bin', ) :(), diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index af6df38e0b..bcf5888913 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -399,6 +399,7 @@ perl-TimeDate perl-XML-Simple perl-XML-Twig perl-libwww-perl mysql-client perl-S echo "Installing tentacle server" cp bin/tentacle_server /usr/local/bin chown pandora /usr/local/bin/tentacle_server + chmod 555 /usr/local/bin/tentacle_server cp FreeBSD/tentacle_server $TENTACLE_SERVER chmod 555 $TENTACLE_SERVER echo "Installing Tentacle Server manual" @@ -409,6 +410,7 @@ perl-TimeDate perl-XML-Simple perl-XML-Twig perl-libwww-perl mysql-client perl-S echo "Installing tentacle server" cp bin/tentacle_server /usr/local/bin chown pandora /usr/local/bin/tentacle_server + chmod 555 /usr/local/bin/tentacle_server cp NetBSD/tentacle_server $TENTACLE_SERVER chmod 555 $TENTACLE_SERVER echo "Installing Tentacle Server manual"