From 8266a0f1abd21bfc062789c5dc28ee88209b6983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20=C3=87a=C4=9Flayan?= Date: Thu, 14 May 2009 20:29:26 +0000 Subject: [PATCH] Enable debug section mismatch warnings --- pisi/actionsapi/kerneltools.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pisi/actionsapi/kerneltools.py b/pisi/actionsapi/kerneltools.py index f8532f79..0d28ff56 100644 --- a/pisi/actionsapi/kerneltools.py +++ b/pisi/actionsapi/kerneltools.py @@ -105,8 +105,9 @@ def __getExtraVersion(): return extraversion - -# Public callables +####################### +# Configuration stuff # +####################### def configure(): # Set EXTRAVERSION @@ -124,8 +125,13 @@ def configure(): else: autotools.make("oldconfig") + +###################### +# Installation stuff # +###################### + def build(): - autotools.make() + autotools.make("CONFIG_DEBUG_SECTION_MISMATCH=y") def install(): suffix = __getSuffix()