diff options
author | Gabriel Krisman Bertazi <[email protected]> | 2021-10-28 15:56:28 -0300 |
---|---|---|
committer | Jan Kara <[email protected]> | 2021-11-01 12:39:53 +0100 |
commit | 8fc70b3a142f97f7859bf052151df896933d2586 (patch) | |
tree | 2d6d69a7a5021a284571927f973cd57f59ad7ed8 | |
parent | c0baf9ac0b05d53dfe0436661dbdc5e43c01c5e0 (diff) |
samples: Make fs-monitor depend on libc and headers
Prevent build errors when headers or libc are not available, such as on
kernel build bots, like the below:
samples/fanotify/fs-monitor.c:7:10: fatal error: errno.h: No such file
or directory
7 | #include <errno.h>
| ^~~~~~~~~
Link: https://lore.kernel.org/r/[email protected]
Suggested-by: Guenter Roeck <[email protected]>
Tested-by: Guenter Roeck <[email protected]>
Signed-off-by: Gabriel Krisman Bertazi <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
-rw-r--r-- | samples/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/Kconfig b/samples/Kconfig index 88353b8eac0b..56539b21f2c7 100644 --- a/samples/Kconfig +++ b/samples/Kconfig @@ -122,7 +122,7 @@ config SAMPLE_CONNECTOR config SAMPLE_FANOTIFY_ERROR bool "Build fanotify error monitoring sample" - depends on FANOTIFY + depends on FANOTIFY && CC_CAN_LINK && HEADERS_INSTALL help When enabled, this builds an example code that uses the FAN_FS_ERROR fanotify mechanism to monitor filesystem |