From f3bbe9fa9186d7a78f054af16845897bb102f767 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Fri, 18 Feb 2011 10:01:11 +0100 Subject: [PATCH] guarantee that for the symbol file the execution flag is not set --- newlib/examples/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/newlib/examples/Makefile b/newlib/examples/Makefile index 5e712ac1..b5710a41 100644 --- a/newlib/examples/Makefile +++ b/newlib/examples/Makefile @@ -20,11 +20,13 @@ test_fork: test_fork.o $(CC) -T link.ld -o $@ $(LDFLAGS) $< $(OBJCOPY) $(KEEP_DEBUG) $@ $@.sym $(OBJCOPY) $(STRIP_DEBUG) $@ + chmod a-x $@.sym hello: hello.o $(CC) -T link.ld -o $@ $(LDFLAGS) $< $(OBJCOPY) $(KEEP_DEBUG) $@ $@.sym $(OBJCOPY) $(STRIP_DEBUG) $@ + chmod a-x $@.sym clean: $(RM) hello test_fork *.sym *.o *~