blob: e39a58a3248bac76d63e2dba582b56b92ee60665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/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 .cvsignore
-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 {} ;"));
system("find . -type d -a -name CVS | xargs rm -rf");
# clean_files ends here
|