Module Name: src Committed By: msaitoh Date: Fri Oct 4 05:56:03 UTC 2024
Modified Files: src/tests/kernel: Makefile Log Message: tests: Fix build error. Set TESTS_SH correctly. To generate a diff of this commit: cvs rdiff -u -r1.80 -r1.81 src/tests/kernel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/kernel/Makefile diff -u src/tests/kernel/Makefile:1.80 src/tests/kernel/Makefile:1.81 --- src/tests/kernel/Makefile:1.80 Thu Oct 3 17:11:14 2024 +++ src/tests/kernel/Makefile Fri Oct 4 05:56:03 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.80 2024/10/03 17:11:14 christos Exp $ +# $NetBSD: Makefile,v 1.81 2024/10/04 05:56:03 msaitoh Exp $ NOMAN= # defined @@ -32,7 +32,7 @@ TESTS_C+= t_unmount .endif TESTS_C+= t_zombie -TESTS_SH+= t_fexecve +TESTS_SH= t_fexecve TESTS_SH+= t_fpufork TESTS_SH+= t_interp TESTS_SH+= t_magic_symlinks @@ -45,7 +45,7 @@ TESTS_SH+= t_simplehook .endif TESTS_SH+= t_trapsignal TESTS_SH+= t_umountstress -TESTS_SH= t_umount +TESTS_SH+= t_umount BINDIR= ${TESTSDIR} PROGS= h_fexecve