From e2e68717f79a8dedd90158b77a388011180df008 Mon Sep 17 00:00:00 2001 From: Marc Andre Tanner Date: Sun, 11 Oct 2009 09:36:54 +0200 Subject: [PATCH] Use $CONFIG_DIR were appropriate Signed-off-by: Marc Andre Tanner --- sources/sections/busybox.sh | 4 ++-- sources/sections/uClibc.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/sections/busybox.sh b/sources/sections/busybox.sh index 4876ef7..50eaea7 100644 --- a/sources/sections/busybox.sh +++ b/sources/sections/busybox.sh @@ -1,8 +1,8 @@ # Build and install busybox setupfor busybox -make allnoconfig KCONFIG_ALLCONFIG="$SOURCES/miniconfig-busybox" && -cp .config "$SOURCES/config-busybox" && +make allnoconfig KCONFIG_ALLCONFIG="$CONFIG_DIR/miniconfig-busybox" && +cp .config "$CONFIG_DIR/config-busybox" && LDFLAGS="$CROSS_LDFLAGS $LDFLAGS" make -j $CPUS CROSS_COMPILE="$CROSS" $VERBOSITY && make busybox.links && cp busybox "$ROOT_DIR/usr/bin" diff --git a/sources/sections/uClibc.sh b/sources/sections/uClibc.sh index 475a3d5..2f53bea 100644 --- a/sources/sections/uClibc.sh +++ b/sources/sections/uClibc.sh @@ -1,8 +1,8 @@ # Build and install uClibc. setupfor uClibc -make CROSS="$CROSS" KCONFIG_ALLCONFIG="$SOURCES/miniconfig-uClibc" allnoconfig && -cp .config "$SOURCES/config-uClibc" || dienow +make CROSS="$CROSS" KCONFIG_ALLCONFIG="$CONFIG_DIR/miniconfig-uClibc" allnoconfig && +cp .config "$CONFIG_DIR/config-uClibc" || dienow UCLIBC_MAKE_FLAGS="CROSS=$CROSS KERNEL_HEADERS=$STAGING_DIR/usr/include \ RUNTIME_PREFIX=/ UCLIBC_LDSO_NAME=ld-uClibc $VERBOSITY" -- 2.11.4.GIT