From c822572d68e326384ce179b9484de0e4abf3d514 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sun, 20 Mar 2022 09:31:20 -0600 Subject: [PATCH] engines/null: use correct -include Fixes: cef0a8357b3f ("engines/null: update external engine compilation") Signed-off-by: Jens Axboe --- engines/null.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/null.c b/engines/null.c index 409b2b82..8dcd1b21 100644 --- a/engines/null.c +++ b/engines/null.c @@ -7,7 +7,7 @@ * It also can act as external C++ engine - compiled with: * * g++ -O2 -g -shared -rdynamic -fPIC -o cpp_null null.c \ - * -i ../config-host.h -DFIO_EXTERNAL_ENGINE + * -include ../config-host.h -DFIO_EXTERNAL_ENGINE * * to test it execute: * -- 2.25.1