]> www.infradead.org Git - mtd-utils.git/commitdiff
Fix: add missing new-line-escape in jffsX-utils Makemodule.am
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Wed, 5 Jan 2022 09:32:14 +0000 (10:32 +0100)
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Wed, 5 Jan 2022 09:32:14 +0000 (10:32 +0100)
In commit a888044525, various header files that were added to the
distribution tarball via EXTRA_DIST were instead added to the source
lists of their respective programs instead.

In the case of jffsX-utils, a missing escape for a new-line in the
source list caused the include/linux/jffs2.h header to not be packged
in the release tarball. This went undiscovered, as the system on which
the release tarball was built, had the same header installed installed
in the system include directory, so a `make distcheck` succeeded.

Fixes: a888044525
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
jffsX-utils/Makemodule.am

index 96389f68993463906f081fec3cf9a85de1e8e29d..7112d6e8af74e50151f961ab245ed9505b02d919 100644 (file)
@@ -6,7 +6,7 @@ mkfs_jffs2_SOURCES = \
        jffsX-utils/rbtree.c \
        jffsX-utils/compr_lzo.c \
        jffsX-utils/compr.c \
-       jffsX-utils/compr_rtime.c
+       jffsX-utils/compr_rtime.c \
        jffsX-utils/compr.h \
        jffsX-utils/rbtree.h \
        jffsX-utils/summary.h \