]> git.etc.gen.nz Git - librt-authen-externalauth-perl.git/commitdiff
Allow the use of DESTDIR for installing inside our debian working directory.
authorAndrew Ruthven <andrew@etc.gen.nz>
Wed, 10 Aug 2011 11:09:55 +0000 (23:09 +1200)
committerAndrew Ruthven <andrew@etc.gen.nz>
Wed, 10 Aug 2011 11:09:55 +0000 (23:09 +1200)
inc/Module/Install/RTx.pm

index 20a354b32d15bb16923ec7b52be0b84155cbe337..7e681c6993bc661553c3d094ae42ff36c73cd44d 100755 (executable)
@@ -83,13 +83,13 @@ sub RTx {
     if ( $RT::LocalPluginPath ) {
         die "Because of bugs in RT 3.8.0 this extension can not be installed.\n"
             ."Upgrade to RT 3.8.1 or newer.\n" if $RT::VERSION =~ /^3\.8\.0/;
-        $path{$_} = $RT::LocalPluginPath . "/$original_name/$_"
+        $path{$_} = '$(DESTDIR)' . $RT::LocalPluginPath . "/$original_name/$_"
             foreach @DIRS;
     } else {
         foreach ( @DIRS ) {
             no strict 'refs';
             my $varname = "RT::Local" . ucfirst($_) . "Path";
-            $path{$_} = ${$varname} || "$RT::LocalPath/$_";
+            $path{$_} = '$(DESTDIR)' . (${$varname} || "$RT::LocalPath/$_");
         }
 
         $path{$_} .= "/$name" for grep $path{$_}, qw(etc po var);