From: Graham Percival Date: Tue, 29 Sep 2015 20:33:33 +0000 (-0700) Subject: Fix trailing whitespace in Makefile.am X-Git-Tag: v3.1.900a~64^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F608%2Fhead;p=thirdparty%2Flibarchive.git Fix trailing whitespace in Makefile.am Previously, running the build process gave a warning: $ sh build/autogen.sh ... Makefile.am:356: warning: whitespace following trailing backslash ... This removes that warning. --- diff --git a/Makefile.am b/Makefile.am index 977b8566d..0c04b54b7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -353,7 +353,7 @@ libarchive_test_SOURCES= \ libarchive/test/test_archive_write_add_filter_by_name.c \ libarchive/test/test_archive_write_set_filter_option.c \ libarchive/test/test_archive_write_set_format_by_name.c \ - libarchive/test/test_archive_write_set_format_filter_by_ext.c \ + libarchive/test/test_archive_write_set_format_filter_by_ext.c \ libarchive/test/test_archive_write_set_format_option.c \ libarchive/test/test_archive_write_set_option.c \ libarchive/test/test_archive_write_set_options.c \