Author: ngie Date: Sun Jan 25 03:08:21 2015 New Revision: 277674 URL: https://svnweb.freebsd.org/changeset/base/277674
Log: Fix building rcorder with -DDEBUG by using libutil.h instead of util.h from usr.bin/make MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Modified: head/sbin/rcorder/Makefile head/sbin/rcorder/rcorder.c Directory Properties: head/ (props changed) head/sbin/ (props changed) Modified: head/sbin/rcorder/Makefile ============================================================================== --- head/sbin/rcorder/Makefile Sun Jan 25 03:02:29 2015 (r277673) +++ head/sbin/rcorder/Makefile Sun Jan 25 03:08:21 2015 (r277674) @@ -7,13 +7,8 @@ MAN= rcorder.8 LIBADD= util -# XXX hack for make's hash.[ch] -CFLAGS+= -DORDER -I. +CFLAGS+= -DORDER -SRCS+= util.h -CLEANFILES+= util.h - -util.h: - ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET} +#CFLAGS+= -DDEBUG .include <bsd.prog.mk> Modified: head/sbin/rcorder/rcorder.c ============================================================================== --- head/sbin/rcorder/rcorder.c Sun Jan 25 03:02:29 2015 (r277673) +++ head/sbin/rcorder/rcorder.c Sun Jan 25 03:08:21 2015 (r277674) @@ -42,10 +42,10 @@ __FBSDID("$FreeBSD$"); #include <err.h> #include <stdio.h> +#include <libutil.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <util.h> #include "ealloc.h" #include "sprite.h" _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"