Browse Source

[DFS] fix the NFS link issue

Bernard Xiong 10 years ago
parent
commit
f36a1d92a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/dfs/filesystems/nfs/SConscript

+ 1 - 1
components/dfs/filesystems/nfs/SConscript

@@ -3,7 +3,7 @@
 from building import *
 
 cwd = GetCurrentDir()
-src = Glob('*.c')
+src = Glob('*.c') + Glob('rpc/*.c')
 CPPPATH = [cwd]
 
 group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_NFS'], CPPPATH = CPPPATH)