Discussion:
[PATCH] trace-cmd: Fix out-of-tree build
Kusanagi Kouichi
2014-01-08 13:03:22 UTC
Permalink
make O=foo fails with following error:

.../Makefile:221: features.mk: No such file or directory
make[1]: *** No rule to make target `features.mk'. Stop.
make: *** [sub-make] Error 2

Signed-off-by: Kusanagi Kouichi <***@ac.auone-net.jp>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 0578546..b967019 100644
--- a/Makefile
+++ b/Makefile
@@ -218,7 +218,7 @@ KERNELSHARK_VERSION = $(KS_VERSION).$(KS_PATCHLEVEL).$(KS_EXTRAVERSION)

INCLUDES = -I. $(CONFIG_INCLUDES)

-include features.mk
+include $(src)/features.mk

# Set compile option CFLAGS if not set elsewhere
CFLAGS ?= -g -Wall
--
1.8.5.2

--
To unsubscribe from this list: send the line "unsubscribe linux-trace-users" in
the body of a message to ***@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Steven Rostedt
2014-01-08 14:03:52 UTC
Permalink
On Wed, 8 Jan 2014 22:03:22 +0900
Post by Kusanagi Kouichi
.../Makefile:221: features.mk: No such file or directory
make[1]: *** No rule to make target `features.mk'. Stop.
make: *** [sub-make] Error 2
Thanks! Applied and pushed.

-- Steve
Post by Kusanagi Kouichi
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 0578546..b967019 100644
--- a/Makefile
+++ b/Makefile
@@ -218,7 +218,7 @@ KERNELSHARK_VERSION = $(KS_VERSION).$(KS_PATCHLEVEL).$(KS_EXTRAVERSION)
INCLUDES = -I. $(CONFIG_INCLUDES)
-include features.mk
+include $(src)/features.mk
# Set compile option CFLAGS if not set elsewhere
CFLAGS ?= -g -Wall
--
To unsubscribe from this list: send the line "unsubscribe linux-trace-users" in
the body of a message to ***@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Loading...