summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2001-09-24 00:16:05 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2001-09-24 00:16:05 +0000
commit3fe973db54e901674cb9a2523ff2be7ff561d2d3 (patch)
tree280543390b393d676233f0a5fe11345e88bdb086 /perl-install
parent5c3173c8cc6a7af2c97e2f320194a8d27b77a55d (diff)
downloaddrakx-backup-do-not-use-3fe973db54e901674cb9a2523ff2be7ff561d2d3.tar
drakx-backup-do-not-use-3fe973db54e901674cb9a2523ff2be7ff561d2d3.tar.gz
drakx-backup-do-not-use-3fe973db54e901674cb9a2523ff2be7ff561d2d3.tar.bz2
drakx-backup-do-not-use-3fe973db54e901674cb9a2523ff2be7ff561d2d3.tar.xz
drakx-backup-do-not-use-3fe973db54e901674cb9a2523ff2be7ff561d2d3.zip
File permission settings during install were not done. Fixed.
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/printer.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printer.pm b/perl-install/printer.pm
index e7f182517..3274627be 100644
--- a/perl-install/printer.pm
+++ b/perl-install/printer.pm
@@ -112,7 +112,7 @@ sub set_permissions {
# We only need to set the permissions during installation to be able to
# print test pages. After installation the devfsd daemon does the business
# automatically.
- if (!$isInstall) {return 1;}
+ if (!$::isInstall) {return 1;}
if ($owner && $group) {
run_program::rooted($prefix, "/bin/chown", "$owner.$group", $file)
|| die "Could not start chown!";