From ee98db53c9434b2e6b15a2ea9905e992f61e015d Mon Sep 17 00:00:00 2001 From: jsatoh Date: Sun, 7 Nov 2010 03:03:49 +0000 Subject: [PATCH] 2010-11-07 Junichi Satoh * Makefile.PL: Added 'INSTALLSITELIB' for FreeBSD. (undefined) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3545 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 4 ++++ pandora_server/Makefile.PL | 3 +++ 2 files changed, 7 insertions(+) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 84948e45b9..3c414e2b3a 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,7 @@ +2010-11-07 Junichi Satoh + + * Makefile.PL: Added 'INSTALLSITELIB' for FreeBSD. (undefined) + 2010-11-05 Sergio Martin * util/pandora_sync_db.pl: Changed the tevento table diff --git a/pandora_server/Makefile.PL b/pandora_server/Makefile.PL index c2f22a87b4..6f6516d62a 100644 --- a/pandora_server/Makefile.PL +++ b/pandora_server/Makefile.PL @@ -3,6 +3,9 @@ use ExtUtils::MakeMaker; WriteMakefile( INSTALLSITELIB => '/usr/lib/perl5', + (($^O eq 'freebsd') + ? (INSTALLSITELIB => '') : () + ), NAME => 'PandoraFMS', VERSION_FROM => 'lib/PandoraFMS/Config.pm', AUTHOR => 'Artica ST ',