- Only care about the locale stuff if we have locale in the first place.
This commit is contained in:
parent
c854c67059
commit
f3489da092
@ -63,17 +63,24 @@ endif
|
||||
$(DL_DIR)/$(UCLIBC_SOURCE):
|
||||
mkdir -p $(DL_DIR)
|
||||
$(WGET) -P $(DL_DIR) $(UCLIBC_SITE)/$(UCLIBC_SOURCE)
|
||||
|
||||
ifneq ($(UCLIBC_HAS_LOCALE),)
|
||||
$(DL_DIR)/$(UCLIBC_SOURCE_LOCALE):
|
||||
mkdir -p $(DL_DIR)
|
||||
$(WGET) -P $(DL_DIR) $(UCLIBC_SITE_LOCALE)/$(UCLIBC_SOURCE_LOCALE)
|
||||
|
||||
UCLIBC_LOCALE_DATA:=$(DL_DIR)/$(UCLIBC_SOURCE_LOCALE)
|
||||
else
|
||||
UCLIBC_LOCALE_DATA=
|
||||
endif
|
||||
|
||||
uclibc-unpacked: $(UCLIBC_DIR)/.unpacked
|
||||
$(UCLIBC_DIR)/.unpacked: $(DL_DIR)/$(UCLIBC_SOURCE) $(DL_DIR)/$(UCLIBC_SOURCE_LOCALE)
|
||||
$(UCLIBC_DIR)/.unpacked: $(DL_DIR)/$(UCLIBC_SOURCE) $(UCLIBC_LOCALE_DATA)
|
||||
mkdir -p $(TOOL_BUILD_DIR)
|
||||
$(UCLIBC_CAT) $(DL_DIR)/$(UCLIBC_SOURCE) | tar -C $(TOOL_BUILD_DIR) $(TAR_OPTIONS) -
|
||||
toolchain/patch-kernel.sh $(UCLIBC_DIR) toolchain/uClibc/ uClibc-$(UCLIBC_VER)\*.patch
|
||||
ifneq ($(UCLIBC_HAS_LOCALE),)
|
||||
cp -p $(DL_DIR)/$(UCLIBC_SOURCE_LOCALE) $(UCLIBC_DIR)/extra/locale/
|
||||
endif
|
||||
touch $(UCLIBC_DIR)/.unpacked
|
||||
|
||||
# Some targets may wish to provide their own UCLIBC_CONFIG_FILE...
|
||||
|
Loading…
Reference in New Issue
Block a user