The perl INC path in debian does not include the current directory
anymore. Therefore I added the current directory path at the places
where a module is called and it is assumed that . is part of INC.
See: https://lwn.net/Articles/698853/
# the contents of the Makefile that is written.
-do 'pspp-module-config' || do {
+do './pspp-module-config' || do {
my $build = prompt ("Enter the location of the build directory of the configured pspp source:", "" );
my $src = $top_srcdir;
#! /usr/bin/perl
use strict;
use warnings;
-do 'my-rand.pl';
+do './my-rand.pl';
my_rand (1) foreach 1...10000;
our $seed;
die $seed if $seed != 1043618065;
use strict;
use warnings;
-do 'my-rand.pl';
+do './my-rand.pl';
my ($fmt_name, @templates) = @ARGV;
use strict;
use warnings;
-do 'my-rand.pl';
+do './my-rand.pl';
my ($skip, $fmt_name, @templates) = @ARGV;
use strict;
use warnings;
-do 'my-rand.pl';
+do './my-rand.pl';
for my $number (0, 1, .5, .015625, 123) {
my ($base_exp) = floor ($number ? log10 ($number) : 0);