aboutsummaryrefslogtreecommitdiffstats
path: root/fsck/Makefile.am
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2015-03-07 11:16:54 -0500
committerDan Pasanen <dan.pasanen@gmail.com>2015-11-12 09:37:17 -0600
commitebf25ff6ab2f99390c3610cc7df9cdffba9208bd (patch)
treefecd81f94bbe7010abffd5976f25f8ca24c7e117 /fsck/Makefile.am
parenta193072dd426356fdeb6109d20226f26d56fe450 (diff)
downloadandroid_external_f2fs-tools-ebf25ff6ab2f99390c3610cc7df9cdffba9208bd.tar.gz
android_external_f2fs-tools-ebf25ff6ab2f99390c3610cc7df9cdffba9208bd.tar.bz2
android_external_f2fs-tools-ebf25ff6ab2f99390c3610cc7df9cdffba9208bd.zip
f2fs-tools: fix build system to make distcheck correctly
The current build system fails to `make distcheck` correctly for two reasons: 1) Some header files are not listed in the source files for fsck.f2fs and mkfs.f2fs, and so don't make it into the dist tarball. 2) By setting a default prefix in configure.ac, the mock install doesn't add the correct prefix and instead tries to install directly to the file system. This patch corrects those problems and also adds an autogen.sh script for convenience. Change-Id: I0d169a4114664465ce6722707ecfaece65ae157b Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fsck/Makefile.am')
-rw-r--r--fsck/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsck/Makefile.am b/fsck/Makefile.am
index 3258e47..6c19e11 100644
--- a/fsck/Makefile.am
+++ b/fsck/Makefile.am
@@ -3,7 +3,7 @@
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
AM_CFLAGS = -Wall
sbin_PROGRAMS = fsck.f2fs
-fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c
+fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c f2fs.h fsck.h $(top_srcdir)/include/f2fs_fs.h
fsck_f2fs_LDADD = ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
install-data-hook: