$NetBSD: patch-rts_Makefile,v 1.1 2020/01/20 23:32:38 pho Exp $

Don't set executable bit on non-executables.

--- rts/Makefile.orig	2020-01-20 16:54:53.742728926 +0000
+++ rts/Makefile
@@ -31,7 +31,7 @@ $(LIBTARGET) : $(OBJS)
 
 install :
 	mkdir -p $(TARGET)
-	install $(LIBTARGET) $(HDRS) $(TARGET)
+	install -m644 $(LIBTARGET) $(HDRS) $(TARGET)
 
 clean :
 	rm -f $(OBJS) $(LIBTARGET) $(DYLIBTARGET)
