From cdcebb9bca06db021208c4a58e9713fd32ae350f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20=C3=87a=C4=9Flayan?= Date: Thu, 9 Apr 2009 13:29:44 +0000 Subject: [PATCH] this is finally correct. --- pisi/actionsapi/kerneltools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/actionsapi/kerneltools.py b/pisi/actionsapi/kerneltools.py index 68a02758..b8fa7847 100644 --- a/pisi/actionsapi/kerneltools.py +++ b/pisi/actionsapi/kerneltools.py @@ -196,7 +196,7 @@ def installSource(): shelltools.cd(os.path.join(get.installDIR(), destination)) autotools.make("clean") autotools.make("modules_prepare") - shelltools.system("rm -rf .*") + shelltools.system("find . -path './.*' -exec rm -f '{}' \;") def cleanModuleFiles(): """ Cleans module.* files generated by depmod """