aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2022-01-05 10:32:14 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2022-01-05 10:32:14 +0100
commitc3a92d6bdc5cc9b60ccc4a74eddea6b9bff79ff9 (patch)
tree798c81323ded6ce4b4d99cf69a95c4136287cba6
parent5a71d0079629a3a81ab52ff2c05e13380946c369 (diff)
Fix: add missing new-line-escape in jffsX-utils Makemodule.am
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>
-rw-r--r--jffsX-utils/Makemodule.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/jffsX-utils/Makemodule.am b/jffsX-utils/Makemodule.am
index 96389f6..7112d6e 100644
--- a/jffsX-utils/Makemodule.am
+++ b/jffsX-utils/Makemodule.am
@@ -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 \