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"