[Pkg-mysql-commits] r1222 - trunk/debian

Norbert Tretkowski nobse at alioth.debian.org
Sat May 10 07:21:20 UTC 2008


tags 480362 pending
thanks

Author: nobse
Date: 2008-05-10 07:21:20 +0000 (Sat, 10 May 2008)
New Revision: 1222

Modified:
   trunk/debian/changelog
   trunk/debian/rules
Log:
Fix build on non-linux systems like hurd-i386.

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-05-09 12:57:22 UTC (rev 1221)
+++ trunk/debian/changelog	2008-05-10 07:21:20 UTC (rev 1222)
@@ -1,4 +1,4 @@
-mysql-dfsg-5.0 (5.0.51a-7) unstable; urgency=high
+mysql-dfsg-5.0 (5.0.51a-7) UNRELEASED; urgency=high
 
   * SECURITY:
     Fix for CVE-2008-2079: It was possible to circumvent privileges through
@@ -6,8 +6,9 @@
     DIRECTORY options to overwrite existing table files in the MySQL data
     directory. Use of the MySQL data directory in DATA DIRECTORY and INDEX
     DIRECTORY is now disallowed. (closes: #480292)
+  * Fix build on non-linux systems like hurd-i386. (closes: #480362)
 
- -- Norbert Tretkowski <nobse at debian.org>  Fri, 09 May 2008 14:56:56 +0200
+ -- Norbert Tretkowski <nobse at debian.org>  Sat, 10 May 2008 08:37:45 +0200
 
 mysql-dfsg-5.0 (5.0.51a-6) unstable; urgency=low
 

Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules	2008-05-09 12:57:22 UTC (rev 1221)
+++ trunk/debian/rules	2008-05-10 07:21:20 UTC (rev 1222)
@@ -22,7 +22,7 @@
 
 DISTRIBUTION = $(shell lsb_release -i -s)
 
-MAKE_J = -j$(shell grep -c processor.* /proc/cpuinfo)
+MAKE_J = -j$(shell grep -c processor.* /proc/cpuinfo || echo 1)
 ifeq (${MAKE_J}, -j0)
   MAKE_J = -j1
 endif




More information about the Pkg-mysql-commits mailing list