diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-06 20:53:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-06 20:53:04 +0000 |
commit | c563566aaf3d7a86dbccafcc9912309486cf0370 (patch) | |
tree | 2c85f105935a3e76238427f1ed42a374d037848a /perl-install | |
parent | 6e9707064a2a734dfcb184e25eb1fbb72c664c72 (diff) | |
download | drakx-c563566aaf3d7a86dbccafcc9912309486cf0370.tar drakx-c563566aaf3d7a86dbccafcc9912309486cf0370.tar.gz drakx-c563566aaf3d7a86dbccafcc9912309486cf0370.tar.bz2 drakx-c563566aaf3d7a86dbccafcc9912309486cf0370.tar.xz drakx-c563566aaf3d7a86dbccafcc9912309486cf0370.zip |
s/perl -w/use diagnostics/ so stat it get removed from package at
build time
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/service_harddrake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index 1481eafca..8af36b163 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -1,8 +1,9 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl use lib qw(/usr/lib/libDrakX); use strict; +use diagnostics; use standalone; #- warning, standalone must be loaded very first, for 'explanations' use common; use interactive; |