Reuse the TempExtlib trick from DBIC
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract / _TempExtlib.pm
CommitLineData
39999edd 1package # hide from the pauses
2 SQL::Abstract::_TempExtlib;
3
4use strict;
5use warnings;
6use File::Spec;
7
8our ($HERE) = File::Spec->rel2abs(
9 File::Spec->catdir( (File::Spec->splitpath(__FILE__))[1], '_TempExtlib' )
10) =~ /^(.*)$/; # screw you, taint mode
11
12unshift @INC, $HERE;
13
141;