summaryrefslogtreecommitdiffstats
path: root/fs/Makefile
diff options
context:
space:
mode:
authorDaniel Schultz <d.schultz@phytec.de>2017-06-02 13:11:36 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-06-06 07:47:20 +0200
commit651b3ed2bfd50bf478003c776020dc870e38297f (patch)
tree29a0f67deb7563fe87284f05cc5869e406b78cbf /fs/Makefile
parent8e5a534df784ab91ffde55ed5038e66e8dbb36c8 (diff)
downloadbarebox-651b3ed2bfd50bf478003c776020dc870e38297f.tar.gz
barebox-651b3ed2bfd50bf478003c776020dc870e38297f.tar.xz
fs: Makefile: Add parseopt to all builds
parseopt.h was included to fs.c with commit 9248b, but parseopt.o has a dependency to CONFIG_FS_NFS. Moved parseopt.o to the default build to eliminate build failures. Signed-off-by: Daniel Schultz <d.schultz@phytec.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'fs/Makefile')
-rw-r--r--fs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/Makefile b/fs/Makefile
index f2bb702851..b3f929f506 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -4,11 +4,11 @@ obj-$(CONFIG_FS_RAMFS) += ramfs.o
obj-y += devfs-core.o
obj-$(CONFIG_FS_DEVFS) += devfs.o
obj-$(CONFIG_FS_FAT) += fat/
-obj-y += fs.o
+obj-y += fs.o parseopt.o
obj-$(CONFIG_FS_UBIFS) += ubifs/
obj-$(CONFIG_FS_TFTP) += tftp.o
obj-$(CONFIG_FS_OMAP4_USBBOOT) += omap4_usbbootfs.o
-obj-$(CONFIG_FS_NFS) += nfs.o parseopt.o
+obj-$(CONFIG_FS_NFS) += nfs.o
obj-$(CONFIG_FS_BPKFS) += bpkfs.o
obj-$(CONFIG_FS_UIMAGEFS) += uimagefs.o
obj-$(CONFIG_FS_EFI) += efi.o