summaryrefslogtreecommitdiff
path: root/nuttx/fs
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-20 15:40:34 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-20 15:40:34 -0600
commit0d7693fca4ccbf8a4093194f0876c1baf6173956 (patch)
treeda5dd8331a5d6441b4f66de2aec940a9b1d0f154 /nuttx/fs
parent95d0ef5327694bc93486b38f79b79b964b05f13c (diff)
downloadnuttx-0d7693fca4ccbf8a4093194f0876c1baf6173956.tar.gz
nuttx-0d7693fca4ccbf8a4093194f0876c1baf6173956.tar.bz2
nuttx-0d7693fca4ccbf8a4093194f0876c1baf6173956.zip
Need to build fs_rename.c even if mountpoints are disabled
Diffstat (limited to 'nuttx/fs')
-rw-r--r--nuttx/fs/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/nuttx/fs/Makefile b/nuttx/fs/Makefile
index 615d655fb..05a27d7eb 100644
--- a/nuttx/fs/Makefile
+++ b/nuttx/fs/Makefile
@@ -64,8 +64,8 @@ else
CSRCS += fs_close.c fs_closedir.c fs_dup.c fs_dup2.c fs_fcntl.c
CSRCS += fs_filedup.c fs_filedup2.c fs_ioctl.c fs_lseek.c fs_mkdir.c
CSRCS += fs_open.c fs_opendir.c fs_poll.c fs_read.c fs_readdir.c
-CSRCS += fs_rewinddir.c fs_rmdir.c fs_seekdir.c fs_stat.c fs_statfs.c
-CSRCS += fs_select.c fs_write.c
+CSRCS += fs_rename.c fs_rewinddir.c fs_rmdir.c fs_seekdir.c fs_stat.c
+CSRCS += fs_statfs.c fs_select.c fs_write.c
CSRCS += fs_files.c fs_foreachinode.c fs_inode.c fs_inodeaddref.c
CSRCS += fs_inodebasename.c fs_inodefind.c fs_inoderelease.c
@@ -104,8 +104,7 @@ endif
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
-CSRCS += fs_fsync.c fs_mount.c fs_rename.c fs_umount.c
-CSRCS += fs_unlink.c
+CSRCS += fs_fsync.c fs_mount.c fs_umount.c fs_unlink.c
CSRCS += fs_foreachmountpoint.c
include fat/Make.defs