Date: Fri, 19 Dec 2008 22:59:05 +0000 (UTC) From: Sam Leffler <sam@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r186342 - head/usr.sbin/makefs Message-ID: <200812192259.mBJMx5PI084844@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sam Date: Fri Dec 19 22:59:05 2008 New Revision: 186342 URL: http://svn.freebsd.org/changeset/base/186342 Log: fix pathnames to work w/ buildworld Modified: head/usr.sbin/makefs/Makefile Modified: head/usr.sbin/makefs/Makefile ============================================================================== --- head/usr.sbin/makefs/Makefile Fri Dec 19 22:58:39 2008 (r186341) +++ head/usr.sbin/makefs/Makefile Fri Dec 19 22:59:05 2008 (r186342) @@ -5,21 +5,21 @@ MAN= makefs.8 WARNS?= 2 -CFLAGS+=-I. +CFLAGS+=-I${.CURDIR} SRCS= ffs.c getid.c makefs.c walk.c .PATH: ${.CURDIR}/ffs -CFLAGS+=-Iffs +CFLAGS+=-I${.CURDIR}/ffs CFLAGS+=-DHAVE_STRUCT_STAT_ST_FLAGS=1 CFLAGS+=-DHAVE_STRUCT_STAT_ST_GEN=1 SRCS+= buf.c ffs_alloc.c ffs_balloc.c ffs_bswap.c ffs_subr.c mkfs.c ufs_bmap.c .PATH: ${.CURDIR}/compat -CFLAGS+=-Icompat +CFLAGS+=-I${.CURDIR}/compat SRCS+= pwcache.c strsuftoll.c .PATH: ${.CURDIR}/../mtree -CFLAGS+=-I../mtree +CFLAGS+=-I${.CURDIR}/../mtree SRCS+= misc.c spec.c .PATH: ${.CURDIR}/../../sys/ufs/ffs
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812192259.mBJMx5PI084844>