From bc25b28916e5a094284a1ad280a97c142053ce8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20K=C3=BC=C3=A7=C3=BCk?= Date: Tue, 30 Jun 2009 17:11:21 +0000 Subject: [PATCH] Change default make job number from 1 to 3 in pisi defaults, sometimes it is forgotten and we need to see parallel build errors --- ChangeLog | 4 ++++ pisi/configfile.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a01496d8..9ae3a3c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-06-30 Onur Küçük + * Change default make job number from 1 to 3 in pisi defaults, + sometimes it is forgotten and we need to see parallel build errors + 2009-06-26 Fatih Aşıcı * Pass relative paths of patches to quilt. This makes the patches directory have the same structure as the files diff --git a/pisi/configfile.py b/pisi/configfile.py index 85a46aa9..d8464056 100644 --- a/pisi/configfile.py +++ b/pisi/configfile.py @@ -26,7 +26,7 @@ #host = i686-pc-linux-gnu #generateDebug = False #enableSandbox = False -#jobs = "-j1" +#jobs = "-j3" #CFLAGS= -mtune=generic -march=i686 -O2 -pipe -fomit-frame-pointer -fstack-protector -D_FORTIFY_SOURCE=2 #CXXFLAGS= -mtune=generic -march=i686 -O2 -pipe -fomit-frame-pointer -fstack-protector -D_FORTIFY_SOURCE=2 #LDFLAGS= -Wl,-O1 -Wl,-z,relro -Wl,--hash-style=gnu -Wl,--as-needed -Wl,--sort-common @@ -81,7 +81,7 @@ class GeneralDefaults: class BuildDefaults: """Default values for [build] section""" host = "i686-pc-linux-gnu" - jobs = "-j1" + jobs = "-j3" generateDebug = False enableSandbox = True cflags = "-mtune=generic -march=i686 -O2 -pipe -fomit-frame-pointer -fstack-protector -D_FORTIFY_SOURCE=2"