diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-11-25 20:38:20 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-11-25 20:38:20 +0000 |
commit | 5f79bbb12d478b75065f58c0eca019d52da4039e (patch) | |
tree | 76280fa75fc613cf0d5238f0e7a0f28295edc3cd | |
parent | 2ab2ea6fbd364da7f15014e3f0492082bb27e77d (diff) | |
download | FreeBSD-src-5f79bbb12d478b75065f58c0eca019d52da4039e.zip FreeBSD-src-5f79bbb12d478b75065f58c0eca019d52da4039e.tar.gz |
Avoid requiring 'make depend' here.
Really this should not be a DPSRCS. The acct_test.c should not #include
convert.c, but just link it in as a normal SRCS.
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
-rw-r--r-- | tests/sys/kern/acct/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/sys/kern/acct/Makefile b/tests/sys/kern/acct/Makefile index 03fad6d..ca3df4c 100644 --- a/tests/sys/kern/acct/Makefile +++ b/tests/sys/kern/acct/Makefile @@ -9,6 +9,7 @@ CFLAGS+= -I${.OBJDIR} CLEANFILES+= convert.c convert.c.tmp DPSRCS.acct_test= convert.c +acct_test.o: convert.c convert.c: ${SRCTOP}/sys/kern/kern_acct.c sed -n -e 's/log(/syslog(/g' \ |