From 6cbce395a668363b8973c8ea880c6b4b9f55babf Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 12 Dec 2016 08:36:05 +0100 Subject: Makefile sets +x on "make all" --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e9343fb..b44faa9 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,7 @@ all: makekernel makekernel.conf makekernel.8 %: %.in sed "s@#VERSION#@$(VERSION)@g; s@#BINDIR#@$(BINDIR)@g; s@#ETCDIR#@$(ETCDIR)@g; s@#SRCDIR#@$(SRCDIR)@g" $< > $@ + [ "$@" = "makekernel" ] && chmod +x "$@" || true .PHONY: install dist clean -- cgit v1.2.3-54-g00ecf