From 2935c2b387bcee8971cb611fec6b4b8a0a51a7c4 Mon Sep 17 00:00:00 2001 From: Jakob Gruber Date: Mon, 10 Sep 2012 11:57:41 +0200 Subject: [PATCH] Makefiles: Remove executable bit from headers --- simavr/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simavr/Makefile b/simavr/Makefile index afaae9f..5382e4d 100644 --- a/simavr/Makefile +++ b/simavr/Makefile @@ -86,9 +86,9 @@ PREFIX = ${DESTDIR} install : all $(MKDIR) $(DESTDIR)/include/simavr/avr - $(INSTALL) sim/*.h $(DESTDIR)/include/simavr/ - $(INSTALL) sim_core_*.h $(DESTDIR)/include/simavr/ - $(INSTALL) ../include/*.h $(DESTDIR)/include/simavr/avr/ + $(INSTALL) -m644 sim/*.h $(DESTDIR)/include/simavr/ + $(INSTALL) -m644 sim_core_*.h $(DESTDIR)/include/simavr/ + $(INSTALL) -m644 ../include/*.h $(DESTDIR)/include/simavr/avr/ $(MKDIR) $(DESTDIR)/lib $(INSTALL) ${OBJ}/libsimavr.a $(DESTDIR)/lib/ $(MKDIR) $(DESTDIR)/lib/pkgconfig/ -- 2.39.5