[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1018 - in glibc-package/trunk/debian: . sysdeps



Author: gotom
Date: 2005-08-23 04:16:39 +0000 (Tue, 23 Aug 2005)
New Revision: 1018

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/sysdeps/linux.mk
Log:
    * debian/sysdeps/linux.mk: Check SETNJOBS environment variable to specify
      the number of parallel make by users.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2005-08-23 03:30:17 UTC (rev 1017)
+++ glibc-package/trunk/debian/changelog	2005-08-23 04:16:39 UTC (rev 1018)
@@ -28,6 +28,9 @@
     * debian/FAQ: Add the description about dropping __ctype_* symbol support
       of static linked application/libraries in etch.  (Closes: #324526)
 
+    * debian/sysdeps/linux.mk: Check SETNJOBS environment variable to specify
+      the number of parallel make by users.
+
     * Michael Banck <mbanck@debian.org>:
       - debian/patches/glibc235-gcc4-hurd.dpatch: New file, to build glibc
         on Hurd with gcc-4.0.  (Closes: #324549)

Modified: glibc-package/trunk/debian/sysdeps/linux.mk
===================================================================
--- glibc-package/trunk/debian/sysdeps/linux.mk	2005-08-23 03:30:17 UTC (rev 1017)
+++ glibc-package/trunk/debian/sysdeps/linux.mk	2005-08-23 04:16:39 UTC (rev 1018)
@@ -14,6 +14,11 @@
  NJOBS=1
 endif
 
+# We can override its value by SETNJOBS environment variable.
+ifdef SETNJOBS
+ NJOBS:=$(SETNJOBS)
+endif
+
 # Linuxthreads Config
 threads = yes
 libc_add-ons = linuxthreads $(add-ons)



Reply to: