From 7bffad0981617c5c53cc7d6ff3fc876c3fc20314 Mon Sep 17 00:00:00 2001 From: Andrey Vihrov Date: Mon, 16 Dec 2013 18:00:06 +0200 Subject: [PATCH] Don't forget to install the renderer2 binary if USE_RENDERER_DLOPEN=0 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 0146e8c7..7d9a18ed 100644 --- a/Makefile +++ b/Makefile @@ -2701,6 +2701,10 @@ ifneq ($(BUILD_CLIENT),0) ifneq ($(BUILD_RENDERER_OPENGL2),0) $(INSTALL) $(STRIP_FLAG) -m 0755 $(BR)/renderer_opengl2_$(SHLIBNAME) $(COPYBINDIR)/renderer_opengl2_$(SHLIBNAME) endif + else + ifneq ($(BUILD_RENDERER_OPENGL2),0) + $(INSTALL) $(STRIP_FLAG) -m 0755 $(BR)/$(CLIENTBIN)_opengl2$(FULLBINEXT) $(COPYBINDIR)/$(CLIENTBIN)_opengl2$(FULLBINEXT) + endif endif endif