VFS: move src/vfs/extfs/helpers/sfs.ini to src/vfs/sfs.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2019-05-20 14:51:28 +03:00
parent d4819e1fb6
commit 7cf275db73
3 changed files with 10 additions and 6 deletions

View File

@ -1,7 +1,5 @@
extfsdir = $(libexecdir)/@PACKAGE@/extfs.d
EXTFSCONFFILES = sfs.ini
# Files to install and distribute other than extfs scripts
EXTFS_MISC = README README.extfs
@ -71,9 +69,6 @@ EXTFS_OUT = \
if ENABLE_VFS
extfs_DATA = $(EXTFS_MISC)
extfs_SCRIPTS = $(EXTFS_CONST) $(EXTFS_OUT)
extfsconfdir = $(sysconfdir)/@PACKAGE@
extfsconf_DATA = $(EXTFSCONFFILES)
endif
EXTRA_DIST = $(EXTFS_MISC) $(EXTFS_CONST) $(EXTFSCONFFILES)
EXTRA_DIST = $(EXTFS_MISC) $(EXTFS_CONST)

View File

@ -5,3 +5,12 @@ noinst_LTLIBRARIES = libvfs-sfs.la
libvfs_sfs_la_SOURCES = \
sfs.c sfs.h
SFSCONFFILES = sfs.ini
if ENABLE_VFS_SFS
sfsconfdir = $(sysconfdir)/@PACKAGE@
sfsconf_DATA = $(SFSCONFFILES)
endif
EXTRA_DIST = $(SFSCONFFILES)