From 2bd8dd3389af243b24a19e8f3c5db28123723e65 Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Thu, 1 Nov 2012 12:57:15 +0000 Subject: [PATCH] build: mkdir libs if does not exist Since we are doing this for emulator we might as well do this for normal build too. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index fd0412e77..ec124f46c 100644 --- a/Makefile +++ b/Makefile @@ -257,6 +257,7 @@ ifdef EMULATE_READER else cd $(DJVUDIR)/build && CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" ../configure --disable-desktopfiles --disable-static --enable-shared --host=$(CHOST) --disable-xmltools --disable-largefile $(MAKE) -C $(DJVUDIR)/build + test -d libs || mkdir libs cp $(DJVULIBDIR)/libdjvulibre.so.21 libs endif