From owner-svn-src-all@FreeBSD.ORG Fri Oct 29 21:24:57 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 421071065670; Fri, 29 Oct 2010 21:24:57 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 30BC28FC17; Fri, 29 Oct 2010 21:24:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9TLOvtk059027; Fri, 29 Oct 2010 21:24:57 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9TLOvi7059025; Fri, 29 Oct 2010 21:24:57 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201010292124.o9TLOvi7059025@svn.freebsd.org> From: Rui Paulo Date: Fri, 29 Oct 2010 21:24:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214536 - head/sbin/pflogd X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 21:24:57 -0000 Author: rpaulo Date: Fri Oct 29 21:24:56 2010 New Revision: 214536 URL: http://svn.freebsd.org/changeset/base/214536 Log: Add a ${.CURDIR} reference to the previous commit. Submitted by: dim Modified: head/sbin/pflogd/Makefile Modified: head/sbin/pflogd/Makefile ============================================================================== --- head/sbin/pflogd/Makefile Fri Oct 29 21:23:34 2010 (r214535) +++ head/sbin/pflogd/Makefile Fri Oct 29 21:24:56 2010 (r214536) @@ -6,7 +6,7 @@ PROG= pflogd SRCS= pflogd.c pidfile.c privsep.c privsep_fdpass.c MAN= pflogd.8 -CFLAGS=-include ../../lib/libpcap/config.h +CFLAGS=-include ${.CURDIR}/../../lib/libpcap/config.h LDADD= -lpcap -lutil DPADD= ${LIBPCAP} ${LIBUTIL}