Change default make job number from 1 to 3 in pisi defaults,

sometimes it is forgotten and we need to see parallel build errors
This commit is contained in:
Onur Küçük
2009-06-30 17:11:21 +00:00
parent 08f585d2a2
commit bc25b28916
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
2009-06-30 Onur Küçük <onur@pardus.org.tr>
* 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ı <fatih@pardus.org.tr>
* Pass relative paths of patches to quilt. This makes the
patches directory have the same structure as the files
+2 -2
View File
@@ -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"