hello all, actually, i have koha 2.2.5 running on opensolaris (the first install was on solaris, then migrated to opensolaris), and i'm trying to upgrade to koha3. Before upgrading, i want to do a fresh install koha 3.00.00, and encounter many problems: "perl Makefile.PL" is ok after many hacks "make" is ok "make test" is ok but install is impossible! make: *** No rule to make target `install'. Stop. Here are logs from the commands: http://www.latp.univ-mrs.fr/~henry/koha3/MAKE.LOG and i noticed these messages: members/patronimage.pl:77: Unmatched =back C4/External/BakerTaylor.pm:126: Unknown formatting code D</Error> reports/guided_reports.pl:35: Unknown command paragraph "=over2" C4/SMS.pm:54: Unknown command paragraph "=over4" C4/SMS.pm:56: Unmatched =back C4/Labels.pm:803: Unknown command paragraph "=head GetBarcodeData" C4/Labels.pm:862: Unknown command paragraph "=head descKohaTables Return a hashref of an array of hashes, with name,type keys. =cut" What's the problem with these lines? thanks in advance for help, gerard
Frederic Demians wrote:
make: *** No rule to make target `install'. Stop.
You may have to edit Makefile.PL line 1418:
if ( $^O =~ /darwin|linux|cygwin|freebsd/ ) {
-- Frédéric
thanks for your fast reply, but i'm not very friendly with perl, what's the value expected? the result of "uname -n" ? gerard
ghenry <ghenry@cmi.univ-mrs.fr> wrote:
Frederic Demians wrote:
You may have to edit Makefile.PL line 1418: if ( $^O =~ /darwin|linux|cygwin|freebsd/ ) {
thanks for your fast reply, but i'm not very friendly with perl, what's the value expected? the result of "uname -n" ?
man perlvar says: $^O The name of the operating system under which this copy of Perl was built, as determined during the configuration process. The value is identical to $Config{'osname'}. See also Config and the -V command-line switch documented in perlrun. and in the worst case, "perl -e 'print $^O'" will print the current value for your system. Hope that helps, -- MJ Ray (slef) Webmaster for hire, statistician and online shop builder for a small worker cooperative http://www.ttllp.co.uk/ http://mjr.towers.org.uk/ (Notice http://mjr.towers.org.uk/email.html) tel:+44-844-4437-237
MJ Ray wrote:
ghenry <ghenry@cmi.univ-mrs.fr> wrote:
You may have to edit Makefile.PL line 1418: if ( $^O =~ /darwin|linux|cygwin|freebsd/ ) {
Frederic Demians wrote: thanks for your fast reply, but i'm not very friendly with perl, what's the value expected? the result of "uname -n" ?
man perlvar says:
$^O The name of the operating system under which this copy of Perl was built, as determined during the configuration process. The value is identical to $Config{'osname'}. See also Config and the -V command-line switch documented in perlrun.
and in the worst case, "perl -e 'print $^O'" will print the current value for your system.
Hope that helps,
thanks for your reply. What's the best way to ensure that this will be taken into account for the future releases of koha? opening a bug on bug tracker?
ghenry <ghenry@cmi.univ-mrs.fr> wrote:
What's the best way to ensure that this will be taken into account for the future releases of koha? opening a bug on bug tracker?
Opening a bug on bug tracker would be the best way, yes. Especially if you note whether or not it works for you! Thanks, -- MJ Ray (slef) Webmaster for hire, statistician and online shop builder for a small worker cooperative http://www.ttllp.co.uk/ http://mjr.towers.org.uk/ (Notice http://mjr.towers.org.uk/email.html) tel:+44-844-4437-237
participants (3)
-
Frederic Demians -
ghenry -
MJ Ray