]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_installpam
r426: update
[debhelper.git] / dh_installpam
index 2262d810fe67251af704a47f8cca2c5b03c6e166..85ee092751df8b5b36f0092ae16ae597427a5f93 100755 (executable)
@@ -2,20 +2,20 @@
 #
 # Integration with debian pam system:
 #
-# If debian/pam file exists, save it to $TMP/etc/pam.d/$PACKAGE
+# If debian/pam file exists, save it to $tmp/etc/pam.d/$package
 
-BEGIN { push @INC, "debian", "/usr/lib/debhelper" }
-use Dh_Lib;
+use strict;
+use Debian::Debhelper::Dh_Lib;
 init();
 
-foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
-       $TMP=tmpdir($PACKAGE);
-       $pam=pkgfile($PACKAGE,"pam");
+foreach my $package (@{$dh{DOPACKAGES}}) {
+       my $tmp=tmpdir($package);
+       my $pam=pkgfile($package,"pam");
        
        if ($pam ne '') {
-               if (! -d "$TMP/etc/pam.d") {
-                       doit("install","-d","$TMP/etc/pam.d");
+               if (! -d "$tmp/etc/pam.d") {
+                       doit("install","-d","$tmp/etc/pam.d");
                }
-               doit("install","-p","-m644",$pam,"$TMP/etc/pam.d/$PACKAGE");
+               doit("install","-p","-m644",$pam,"$tmp/etc/pam.d/$package");
        }
 }