changeset 1571:ffa79617fb3f

Apply BUILD_VERBOSE setting to header install.
author Rob Landley <rob@landley.net>
date Thu, 13 Dec 2012 00:55:40 -0600
parents bee6b26a006d
children 30b0392327ef
files sources/sections/linux-headers.sh
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sources/sections/linux-headers.sh	Wed Dec 12 03:50:07 2012 -0600
+++ b/sources/sections/linux-headers.sh	Thu Dec 13 00:55:40 2012 -0600
@@ -9,13 +9,14 @@
 echo "CONFIG_BLK_DEV_INITRD=y" >> mini.conf
 
 make ARCH=${BOOT_KARCH:-$KARCH} KCONFIG_ALLCONFIG=mini.conf $LINUX_FLAGS \
-  allnoconfig >/dev/null &&
+  $VERBOSITY allnoconfig >/dev/null &&
 mkdir -p "$STAGE_DIR/src" &&
 cp .config "$STAGE_DIR/src/config-linux"
 
 
 # Install Linux kernel headers (for use by uClibc).
-make -j $CPUS headers_install ARCH="${KARCH}" INSTALL_HDR_PATH="$STAGE_DIR" &&
+make -j $CPUS headers_install ARCH="${KARCH}" INSTALL_HDR_PATH="$STAGE_DIR" \
+  $VERBOSITY &&
 # This makes some very old package builds happy.
 ln -s ../sys/user.h "$STAGE_DIR/include/asm/page.h"