From 72f2ebbc087e53a5c8bee9953c87f566f1afc1af Mon Sep 17 00:00:00 2001 From: bebbo Date: Tue, 15 May 2018 18:48:12 +0200 Subject: [PATCH] fix install lha --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 07b7d8f..b0ba98b 100644 --- a/Makefile +++ b/Makefile @@ -495,7 +495,7 @@ build/ndk-include/_proto: projects/NDK_3.9.info: download/NDK39.lha $(shell find 2>/dev/null patches/NDK_3.9/ -type f) mkdir -p projects mkdir -p build - if [ ! -e "$$(which lha)" ]; then cd build && rm -rf lha; git clone https://github.com/jca02266/lha; cd lha; aclocal; autoheader; automake -a; autoconf; ./configure; make all; install src/lha$(EXEEXT) $(PREFIX)/bin; fi + if [ ! -e "$$(which lha)" ]; then cd build && rm -rf lha; git clone https://github.com/jca02266/lha; cd lha; aclocal; autoheader; automake -a; autoconf; ./configure; make all; mkdir -p $(PREFIX)/bin/; install src/lha$(EXEEXT) $(PREFIX)/bin/lha$(EXEEXT); fi cd projects && lha xf ../download/NDK39.lha touch -t 0001010000 download/NDK39.lha for i in $$(find patches/NDK_3.9/ -type f); \