shithub: mc

Download patch

ref: 791c39b9e378c3ce189dce1119c272b66393e6a0
parent: 67542c60682266d8c4513a05b6e7f3deda37684f
author: Ori Bernstein <[email protected]>
date: Mon Jul 14 18:07:19 EDT 2014

Fix missing paren in abspath call

--- a/mk/myr.mk
+++ b/mk/myr.mk
@@ -66,7 +66,7 @@
 	@if [ ! -z "$(_LIBNAME)" ]; then \
 		echo install -m 644 $(_LIBNAME) $(abspath $(DESTDIR)/$(INST_ROOT)/lib/myr); \
 		echo install -m 644 $(MYRLIB) $(abspath $(DESTDIR)/$(INST_ROOT)/lib/myr); \
-		mkdir -p $(abspath $(DESTDIR)/$(INST_ROOT)/lib/myr; \
+		mkdir -p $(abspath $(DESTDIR)/$(INST_ROOT)/lib/myr); \
 		install -m 644 $(_LIBNAME) $(abspath $(DESTDIR)/$(INST_ROOT)/lib/myr); \
 		install -m 644 $(MYRLIB) $(abspath $(DESTDIR)/$(INST_ROOT)/lib/myr); \
 	fi