From: Jakob Gruber Date: Mon, 10 Sep 2012 09:57:41 +0000 (+0200) Subject: Makefiles: Remove executable bit from headers X-Git-Tag: v1.0~4 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=2935c2b387bcee8971cb611fec6b4b8a0a51a7c4;p=sx%2Fsimavr.git Makefiles: Remove executable bit from headers --- 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/