From d68eefcc30b400fad71581f561b4895d10011591 Mon Sep 17 00:00:00 2001 From: imacat Date: Wed, 10 Feb 2021 22:52:46 +0800 Subject: [PATCH] Fixed the require of the test utility in Build.PL and Makefile.PL. --- Build.PL | 2 +- Makefile.PL | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Build.PL b/Build.PL index ea306a8..cabbfee 100755 --- a/Build.PL +++ b/Build.PL @@ -3,7 +3,7 @@ use strict; use Module::Build; use lib qw(lib); use DbFramework::Util; -require 't/util.pl'; +require './t/util.pl'; my $catalog_db = 'dbframework_catalog'; my %keytypes = (primary => 0, foreign => 1, index => 2); diff --git a/Makefile.PL b/Makefile.PL index 0f6564b..daa266e 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ use strict; use ExtUtils::MakeMaker; use lib qw(lib); use DbFramework::Util; -require 't/util.pl'; +require './t/util.pl'; my $catalog_db = 'dbframework_catalog'; my %keytypes = (primary => 0, foreign => 1, index => 2);