diff options
author | ngie <ngie@FreeBSD.org> | 2015-04-25 04:35:43 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-04-25 04:35:43 +0000 |
commit | 2d0e3fb27f61c7dc8543323c706844554d32642f (patch) | |
tree | 97cc651b9c3bded48cc824f5c9849f7da0d81e99 /lib | |
parent | 23066486baa955e065c83bc5afcb120fa8087209 (diff) | |
download | FreeBSD-src-2d0e3fb27f61c7dc8543323c706844554d32642f.zip FreeBSD-src-2d0e3fb27f61c7dc8543323c706844554d32642f.tar.gz |
Assuming a system has /bin/csh on it is a bad idea (especially it being
optional on FreeBSD). Look for /bin/cat instead
MFC after: 3 days
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/tests/db/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/tests/db/Makefile b/lib/libc/tests/db/Makefile index 323a9f0..ed1d6ca 100644 --- a/lib/libc/tests/db/Makefile +++ b/lib/libc/tests/db/Makefile @@ -11,6 +11,7 @@ FILESDIR= ${TESTSDIR} FILES= README NETBSD_ATF_TESTS_SH+= db_test +ATF_TESTS_SH_SED_db_test= -e 's,/bin/csh,/bin/cat,g' .include "../Makefile.netbsd-tests" |