diff mbox series

[v2] Fix shebang in open-posix makefile generator

Message ID 20190604090824.15427-1-pcervinka@suse.com
State Changes Requested
Headers show
Series [v2] Fix shebang in open-posix makefile generator | expand

Commit Message

Petr Cervinka June 4, 2019, 9:08 a.m. UTC
---
 testcases/open_posix_testsuite/scripts/generate-makefiles.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Cyril Hrubis June 5, 2019, 2:38 p.m. UTC | #1
Hi!

You are missing the Signed-off-by: line here, see:

https://www.kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin

Other than that this is obviously OK.
diff mbox series

Patch

diff --git a/testcases/open_posix_testsuite/scripts/generate-makefiles.sh b/testcases/open_posix_testsuite/scripts/generate-makefiles.sh
index 4666739f5..7b11c98bd 100755
--- a/testcases/open_posix_testsuite/scripts/generate-makefiles.sh
+++ b/testcases/open_posix_testsuite/scripts/generate-makefiles.sh
@@ -186,7 +186,7 @@  EOF
 	if ! grep -q '^run.sh' "$makefile.3"; then
 		cat >> "$makefile.3" <<EOF
 run.sh:
-	@echo '#/bin/sh' > \$@
+	@echo '#!/bin/sh' > \$@
 	@echo "\$(top_srcdir)/bin/run-tests.sh \$(subdir) \$(INSTALL_TARGETS)" >> \$@
 	@chmod +x run.sh