Subject: | $arext of Makefile.PL is empty |
Hi,
first of all, thanks for this great piece of Software which I compiled quite often so far. After compiling it runs perfectly.
But each time my problem was that make did not find libsqlod.a . I always ended up with writing "libsqlod.a" explicitly instead of "libsqlod.$arext" .
Right now I had time to look for the bug - and saw that there's a tilde missing in line 154 of version 1.09 (don't know the line numbers of older versions):
$arext = s/^\.//;
should read
$arext =~ s/^\.//;
otherwise $arext is empty instead of "a".
It would be great if you could fix that :-)
Greetings from Munich, Germany,
Torben