From e129307c40e1daa8e06cadacae5c8633a23c372c Mon Sep 17 00:00:00 2001 From: HW Date: Sun, 4 Nov 2012 12:45:24 +0100 Subject: [PATCH] Fixed initialization/update of mupdf's submodules, build "release" version of build helpers --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b09165cea..99a3d57e9 100644 --- a/Makefile +++ b/Makefile @@ -189,10 +189,11 @@ lfs.o: $(LFSDIR)/src/lfs.c fetchthirdparty: rm -rf mupdf/thirdparty - test -d mupdf && (cd mupdf; git checkout .; git submodule init; git submodule update) || echo warn: mupdf folder not found + test -d mupdf && (cd mupdf; git checkout .) || echo warn: mupdf folder not found test -d $(LUADIR) && (cd $(LUADIR); git checkout .) || echo warn: $(LUADIR) folder not found git submodule init git submodule update + cd mupdf && (git submodule init; git submodule update) ln -sf kpvcrlib/crengine/cr3gui/data data test -e data/cr3.css || ln kpvcrlib/cr3.css data/ test -d fonts || ln -sf $(TTF_FONTS_DIR) fonts