OSDN Git Service

Don't download the local data if we have it already.
authorManuel Novoa III <mjn3@codepoet.org>
Thu, 4 Dec 2003 06:37:34 +0000 (06:37 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Thu, 4 Dec 2003 06:37:34 +0000 (06:37 -0000)
Makefile

index ca58f24..e40abf4 100644 (file)
--- 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