aboutsummaryrefslogtreecommitdiffstats
path: root/clean_files
blob: a1fd2358d61872de22658831f7cfd5177c3bdf83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl -w
#---------------------------------------------------------------
# Project         : Linux-Mandrake
# Module          : spec-helper
# File            : clean_files
# Version         : $Id$
# Author          : Frederic Lepied
# Created On      : Thu Feb 10 10:29:18 2000
# Purpose         : remove backup files.
#---------------------------------------------------------------

################################################################################
$RPM_BUILD_ROOT=$ENV{RPM_BUILD_ROOT};
chdir($RPM_BUILD_ROOT) || die "Can't cd to $ENV{RPM_BUILD_ROOT}: $!";

system(split(/\s+/,"find . -type f -a
	        ( -name #*# -o -name *~ -o -name DEADJOE
		 -o -name *.orig -o -name *.rej -o -name *.bak
		 -o -name .*.orig -o -name .*.rej -o -name .SUMS
		 -o -name TAGS -o -name core -o ( -path */.deps/* -a -name *.P )
		) -exec rm -f {} ;"));

# clean_files ends here