% cd src/perl-git
% git pull
...
% Configure
...
% make
...
cc -pthread -Wl,-E -L/usr/local/lib -o miniperl gv.o toke.o perly.o pad.o regcomp.o dump.o util.o mg.o reentr.o mro.o hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o doop.o doio.o regexec.o utf8.o taint.o deb.o universal.o xsutils.o globals.o perlio.o perlapi.o numeric.o mathoms.o locale.o pp_pack.o pp_sort.o miniperlmain.o opmini.o perlmini.o -lm -lutil -lc
sv.o(.text+0x2383): In function `Perl_sv_2pv_flags':
: warning: sprintf() is often misused, please use snprintf()
./miniperl -w -Ilib -MExporter -e '<?>' || make minitest
./miniperl -Ilib make_patchnum.pl
Can't locate unicore/PVA.pl in @INC (@INC contains: lib /usr/local/lib/perl5/site_perl/5.10.0/OpenBSD.i386-openbsd-thread-multi /usr/local/lib/perl5/site_perl/5.10.0 /usr/local/lib/perl5/bleadperl/OpenBSD.i386-openbsd-thread-multi /usr/local/lib/perl5/bleadperl /usr/local/lib/perl5/site_perl/5.10.0 .) at lib/utf8_heavy.pl line 97.
*** Error code 2
Stop in /home/tchrist/src/perl-git (line 256 of makefile).
I'm wondering whether I'm doing something wrong in my git pull
or git config, or whether it's in the Configure.
The "missing" file is in the 5.010 src tree, but AFAICS, in blead's:
% ls ../perl-5.10.0/lib/unicore
ArabicShaping.txt Exact.pl NamesList.txt Scripts.txt
BidiMirroring.txt HangulSyllableType.txt NormalizationCorrections.txt SpecialCasing.txt
Blocks.txt Index.txt PVA.pl StandardizedVariants.txt
Canonical.pl Jamo.txt PropList.txt To
CaseFolding.txt LineBreak.txt PropValueAliases.txt UnicodeData.txt
CombiningClass.pl Makefile Properties lib
CompositionExclusions.txt Name.pl PropertyAliases.txt mktables
Decomposition.pl NamedSequences.txt README.perl mktables.lst
EastAsianWidth.txt NamedSqProv.txt ReadMe.txt version
% ls lib/unicore/
ArabicShaping.txt Index.txt NamesList.txt Scripts.txt
BidiMirroring.txt Jamo.txt NormalizationCorrections.txt SpecialCasing.txt
Blocks.txt LineBreak.txt PropList.txt StandardizedVariants.txt
CaseFolding.txt Makefile PropValueAliases.txt UnicodeData.txt
CompositionExclusions.txt NameAliases.txt PropertyAliases.txt mktables
EastAsianWidth.txt NamedSequences.txt README.perl mktables.lst
HangulSyllableType.txt NamedSqProv.txt ReadMe.txt version
git is new to me, so perhaps the problem lies there:
% get config -l
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=git://perl5.git.perl.org/perl.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.blead.remote=origin
branch.blead.merge=refs/heads/blead
Any quick hints or notions?
--tom
Thread Next