Remove further crap.

svn path=/dists/trunk/linux-kbuild-2.6/; revision=15247
This commit is contained in:
Bastian Blank 2010-02-20 13:36:28 +00:00
parent db0f14f73b
commit 9bb069b998
1 changed files with 0 additions and 5 deletions

View File

@ -102,11 +102,6 @@ class Main(object):
for i in 'input.h', 'license.h', 'mod_devicetable.h':
shutil.copyfile(os.path.join(temp, 'include', 'linux', i), os.path.join(orig, 'include', 'linux', i))
shutil.copytree(os.path.join(temp, 'scripts'), os.path.join(orig, 'scripts'))
for arch in os.listdir(os.path.join(temp, 'arch')):
if os.path.exists(os.path.join(temp, 'arch', arch, 'scripts')):
os.makedirs(os.path.join(orig, 'arch', arch))
shutil.copytree(os.path.join(temp, 'arch', arch, 'scripts'),
os.path.join(orig, 'arch', arch, 'scripts'))
def tar(self):
out = os.path.join("../orig", self.orig_tar)