From 2ed8ea7e4ace7fb1b3bb5b1ab9a23a9bf150193b Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Thu, 4 Dec 2003 06:37:34 +0000 Subject: Don't download the local data if we have it already. --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ca58f2461..e40abf45b 100644 --- a/Makefile +++ b/Makefile @@ -160,13 +160,17 @@ endif # Command used to download source code WGET:=wget --passive-ftp +LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz + pregen: headers ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y) (cd extra/locale; \ - $(WGET) http://www.uclibc.org/downloads/uClibc-locale-030818.tgz); + if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \ + $(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \ + fi ); endif ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y) - (cd extra/locale; zcat uClibc-locale-030818.tgz | tar -xvf -) + (cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -) make -C extra/locale pregen endif -- cgit v1.2.3