xfs: fix tracing builds inside the source tree
authorChristoph Hellwig <hch@infradead.org>
Sun, 14 Aug 2011 17:13:00 +0000 (17:13 +0000)
committerAlex Elder <aelder@sgi.com>
Mon, 22 Aug 2011 21:37:24 +0000 (16:37 -0500)
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@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
fs/xfs/Makefile

index ffce328309b80dffda514dc5258cd52994cc6334..427a4e82a588759dbfb49394f73eca9400d455e7 100644 (file)
@@ -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
This page took 0.030703 seconds and 5 git commands to generate.