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

r5339 - glibc-package/branches/eglibc-2.16/debian



Author: adconrad
Date: 2012-10-26 00:47:33 +0000 (Fri, 26 Oct 2012)
New Revision: 5339

Modified:
   glibc-package/branches/eglibc-2.16/debian/changelog
   glibc-package/branches/eglibc-2.16/debian/rules
Log:
Don't build nscd during when doing a bootstrap DEB_BUILD_PROFILE

Modified: glibc-package/branches/eglibc-2.16/debian/changelog
===================================================================
--- glibc-package/branches/eglibc-2.16/debian/changelog	2012-10-26 00:34:46 UTC (rev 5338)
+++ glibc-package/branches/eglibc-2.16/debian/changelog	2012-10-26 00:47:33 UTC (rev 5339)
@@ -354,6 +354,7 @@
   * debian/rules: Unset CFLAGS and friends and use the package versions.
   * Move ldconfig to ldconfig.real, install ldconfig wrapper, and set up
     a dpkg trigger for libc-bin to avoid excessive calls to ldconfig
+  * Don't build nscd during when doing a bootstrap DEB_BUILD_PROFILE
 
  -- Aurelien Jarno <aurel32@debian.org>  Wed, 25 Jul 2012 23:45:58 +0200
 

Modified: glibc-package/branches/eglibc-2.16/debian/rules
===================================================================
--- glibc-package/branches/eglibc-2.16/debian/rules	2012-10-26 00:34:46 UTC (rev 5338)
+++ glibc-package/branches/eglibc-2.16/debian/rules	2012-10-26 00:47:33 UTC (rev 5339)
@@ -181,8 +181,10 @@
 NODEBUG_libc6-mips64 = 1
 NODEBUG_nscd = 1
 
-ifeq ($(threads),yes)
-DEB_ARCH_REGULAR_PACKAGES += nscd
+ifneq ($(DEB_BUILD_PROFILE),bootstrap)
+  ifeq ($(threads),yes)
+  DEB_ARCH_REGULAR_PACKAGES += nscd
+  endif
 endif
 
 # And now the rules...


Reply to: