From ed0f16f46e28a00105eac9f5ec406b8173d0c2b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20=C3=87a=C4=9Flayan?= Date: Mon, 17 Aug 2009 09:31:10 +0000 Subject: [PATCH] Do it correctly --- pisi/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/util.py b/pisi/util.py index 9c9ea4ba..91e30fce 100644 --- a/pisi/util.py +++ b/pisi/util.py @@ -523,7 +523,7 @@ def strip_file(filepath, fileinfo, outpath): return True """ - elif "SB executable" in fileinfo: + if "SB executable" in fileinfo: if ctx.config.values.build.generatedebug: check_dir(os.path.dirname(outpath)) save_elf_debug(filepath, outpath)