From 0ac62f6d5a3dbcf3b5b6abe556345b251de43416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ozan=20=C3=87a=C4=9Flayan?= Date: Thu, 25 Jun 2009 16:01:29 +0000 Subject: [PATCH] Really substitute the parameter. Thanks Fatih for noticing this. --- 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 4e0d9c52..13bee60f 100644 --- a/pisi/actionsapi/kerneltools.py +++ b/pisi/actionsapi/kerneltools.py @@ -158,7 +158,7 @@ def build(debugSymbols=False): # Enable debugging symbols (-g -gdwarf2) extra_config.append("CONFIG_DEBUG_INFO=y") - autotools.make("%s" " ".join(extra_config)) + autotools.make("%s" % " ".join(extra_config)) def install(): suffix = __getSuffix()