[PATCH] xfs: fix tracing builds inside the source tree
Christoph Hellwig
hch at infradead.org
Sun Aug 14 12:13:00 CDT 2011
The code really requires the current source directory to be in the
header search path. We already do this if building with an object
tree separate from the source, but it needs to be added manually
if building inside the source. The cflags addition for it accidentally
got removed when collapsing the xfs directory structure.
Signed-off-by: Christoph Hellwig <hch at lst.de>
Index: xfs/fs/xfs/Makefile
===================================================================
--- xfs.orig/fs/xfs/Makefile 2011-08-13 06:41:29.586063467 -0700
+++ xfs/fs/xfs/Makefile 2011-08-13 06:41:58.245908204 -0700
@@ -16,6 +16,8 @@
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
+ccflags-y += -I$(src) # needed for trace events
+
ccflags-$(CONFIG_XFS_DEBUG) += -g
obj-$(CONFIG_XFS_FS) += xfs.o
More information about the xfs
mailing list