# HG changeset patch # User Mike Becker # Date 1496226742 -7200 # Node ID 63477d92411d99db88c90a99b3ebe76a34c3dd3b # Parent 08b780ecc611befdf0d80ffb5ba5dfb90f8a2e8e fixes headers missing in dist package diff -r 08b780ecc611 -r 63477d92411d prebuild.sh --- a/prebuild.sh Wed May 31 12:22:36 2017 +0200 +++ b/prebuild.sh Wed May 31 12:32:22 2017 +0200 @@ -22,7 +22,7 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. autoreconf -i -mkdir build +mkdir -p build cd build ../configure $* diff -r 08b780ecc611 -r 63477d92411d src/Makefile.am --- a/src/Makefile.am Wed May 31 12:22:36 2017 +0200 +++ b/src/Makefile.am Wed May 31 12:32:22 2017 +0200 @@ -28,5 +28,8 @@ endif bin_PROGRAMS = cline -cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c scanner.c settings.c string_list.c suffix_fnc.c +cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c \ + scanner.c settings.c string_list.c suffix_fnc.c +EXTRA_DIST = arguments.h bfile_heuristics.h cline.h regex_parser.h scanner.h \ + settings.h stdinc.h string_list.h suffix_fnc.h diff -r 08b780ecc611 -r 63477d92411d src/Makefile.in --- a/src/Makefile.in Wed May 31 12:22:36 2017 +0200 +++ b/src/Makefile.in Wed May 31 12:32:22 2017 +0200 @@ -262,7 +262,12 @@ top_srcdir = @top_srcdir@ @DEBUG_FALSE@AM_CFLAGS = -std=gnu99 -O2 @DEBUG_TRUE@AM_CFLAGS = -std=gnu99 -O0 -Wall -cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c scanner.c settings.c string_list.c suffix_fnc.c +cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c \ + scanner.c settings.c string_list.c suffix_fnc.c + +EXTRA_DIST = arguments.h bfile_heuristics.h cline.h regex_parser.h scanner.h \ + settings.h stdinc.h string_list.h suffix_fnc.h + all: all-am .SUFFIXES: diff -r 08b780ecc611 -r 63477d92411d src/cline.c --- a/src/cline.c Wed May 31 12:22:36 2017 +0200 +++ b/src/cline.c Wed May 31 12:32:22 2017 +0200 @@ -84,7 +84,7 @@ } int exit_with_help(settings_t* settings, int code) { - printf("cline - Version: " VERSION "\n\n"); + printf("cline - Version: " VERSION "\n"); printHelpText(); destroy_settings_t(settings); return code;