From: Stephane Glondu <steph@glondu.net>
Date: Mon, 6 Jan 2020 16:29:19 +0100
Subject: Fix installation failure on bytecode architectures

---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 25bd48a..8b3a342 100644
--- a/Makefile
+++ b/Makefile
@@ -206,11 +206,11 @@ test.native : pyml_tests.native numpy_tests.native
 	./numpy_tests.native
 
 .PHONY : install
-install : $(INSTALL_FILES)
+install :
 ifeq ($(HAVE_OCAMLFIND),no)
 	$(error ocamlfind is needed for 'make install')
 endif
-	$(OCAMLFIND) install pyml $(INSTALL_FILES)
+	$(OCAMLFIND) install pyml $(wildcard $(INSTALL_FILES))
 	[ ! -f pymltop ] || $(INSTALL_PROGRAM) pymltop $(bindir)/pymltop
 	[ ! -f pymlutop ] || $(INSTALL_PROGRAM) pymlutop $(bindir)/pymlutop
 
