This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c9203b48e v9fs/CMakeLists.txt:Fix the problem that virtio-9p is not 
compiled properly in cmake
0c9203b48e is described below

commit 0c9203b48e162740147cf77b62b72b441cf07170
Author: chenrun1 <[email protected]>
AuthorDate: Wed Oct 23 11:11:11 2024 +0800

    v9fs/CMakeLists.txt:Fix the problem that virtio-9p is not compiled properly 
in cmake
    
    Summary:
      change CONFIG_DRIVERS_VIRTIO_9P -> CONFIG_V9FS_VIRTIO_9P
    
    Signed-off-by: chenrun1 <[email protected]>
---
 fs/v9fs/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/v9fs/CMakeLists.txt b/fs/v9fs/CMakeLists.txt
index 2df5868a6c..da46982bac 100644
--- a/fs/v9fs/CMakeLists.txt
+++ b/fs/v9fs/CMakeLists.txt
@@ -23,7 +23,7 @@
 if(CONFIG_FS_V9FS)
   set(V9FS client.c transport.c v9fs.c)
 
-  if(CONFIG_DRIVERS_VIRTIO_9P)
+  if(CONFIG_V9FS_VIRTIO_9P)
     list(APPEND V9FS virtio_9p.c)
   endif()
 

Reply via email to