From aa9eb6058dbc9f61123160e440dd7bdcefc3bdc7 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 17 Apr 2011 10:46:58 +1200 Subject: [PATCH] Make built files nonexecutable --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e18e0c0560..7c9b671159 100644 --- a/Makefile +++ b/Makefile @@ -180,6 +180,7 @@ $$($(1)_TARGET): $$($(1)_SRCS) Makefile $$($(1)_DEPS) $$($(1)_EXTRA) \ $$($(1)_SRCS) @test -e fixheader.exe && mono fixheader.exe $$(@) || `` + @chmod a-x $$(@) endef $(foreach prog,$(PROGRAMS),$(eval $(call BUILD_ASSEMBLY,$(prog))))