diff options
author | Guillaume Rousse <guillomovitch@mandriva.org> | 2008-01-29 21:20:50 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mandriva.org> | 2008-01-29 21:20:50 +0000 |
commit | 7d1cb2c537e76a8408355a62f38016ed3a8c2085 (patch) | |
tree | ab1f59c3bfdb4640e0db755b3616f4c71acd79d8 /clean_files | |
parent | 2bd8b635ff0f1fc402e2c5105e828e6687c5f171 (diff) | |
download | spec-helper-7d1cb2c537e76a8408355a62f38016ed3a8c2085.tar spec-helper-7d1cb2c537e76a8408355a62f38016ed3a8c2085.tar.gz spec-helper-7d1cb2c537e76a8408355a62f38016ed3a8c2085.tar.bz2 spec-helper-7d1cb2c537e76a8408355a62f38016ed3a8c2085.tar.xz spec-helper-7d1cb2c537e76a8408355a62f38016ed3a8c2085.zip |
use strictures and warnings in all perl scripts
Diffstat (limited to 'clean_files')
-rwxr-xr-x | clean_files | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clean_files b/clean_files index 9955454..7e5d02d 100755 --- a/clean_files +++ b/clean_files @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl #--------------------------------------------------------------- # Project : Linux-Mandrake # Module : spec-helper @@ -10,6 +10,8 @@ #--------------------------------------------------------------- ################################################################################ +use strict; +use warnings; $ENV{DONT_CLEANUP} and exit(0); my $RPM_BUILD_ROOT = $ENV{RPM_BUILD_ROOT}; |