fixes headers missing in dist package

Wed, 31 May 2017 12:32:22 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 31 May 2017 12:32:22 +0200
changeset 50
63477d92411d
parent 49
08b780ecc611
child 51
5acf05940667

fixes headers missing in dist package

prebuild.sh file | annotate | diff | comparison | revisions
src/Makefile.am file | annotate | diff | comparison | revisions
src/Makefile.in file | annotate | diff | comparison | revisions
src/cline.c file | annotate | diff | comparison | revisions
     1.1 --- a/prebuild.sh	Wed May 31 12:22:36 2017 +0200
     1.2 +++ b/prebuild.sh	Wed May 31 12:32:22 2017 +0200
     1.3 @@ -22,7 +22,7 @@
     1.4  # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     1.5  
     1.6  autoreconf -i
     1.7 -mkdir build
     1.8 +mkdir -p build
     1.9  cd build
    1.10  ../configure $*
    1.11  
     2.1 --- a/src/Makefile.am	Wed May 31 12:22:36 2017 +0200
     2.2 +++ b/src/Makefile.am	Wed May 31 12:32:22 2017 +0200
     2.3 @@ -28,5 +28,8 @@
     2.4  endif
     2.5  
     2.6  bin_PROGRAMS = cline
     2.7 -cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c scanner.c settings.c string_list.c suffix_fnc.c
     2.8 +cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c \
     2.9 +		scanner.c settings.c string_list.c suffix_fnc.c
    2.10  
    2.11 +EXTRA_DIST = arguments.h bfile_heuristics.h cline.h regex_parser.h scanner.h \
    2.12 +	     settings.h stdinc.h string_list.h suffix_fnc.h
     3.1 --- a/src/Makefile.in	Wed May 31 12:22:36 2017 +0200
     3.2 +++ b/src/Makefile.in	Wed May 31 12:32:22 2017 +0200
     3.3 @@ -262,7 +262,12 @@
     3.4  top_srcdir = @top_srcdir@
     3.5  @DEBUG_FALSE@AM_CFLAGS = -std=gnu99 -O2
     3.6  @DEBUG_TRUE@AM_CFLAGS = -std=gnu99 -O0 -Wall
     3.7 -cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c scanner.c settings.c string_list.c suffix_fnc.c
     3.8 +cline_SOURCES = arguments.c bfile_heuristics.c cline.c regex_parser.c \
     3.9 +		scanner.c settings.c string_list.c suffix_fnc.c
    3.10 +
    3.11 +EXTRA_DIST = arguments.h bfile_heuristics.h cline.h regex_parser.h scanner.h \
    3.12 +	     settings.h stdinc.h string_list.h suffix_fnc.h
    3.13 +
    3.14  all: all-am
    3.15  
    3.16  .SUFFIXES:
     4.1 --- a/src/cline.c	Wed May 31 12:22:36 2017 +0200
     4.2 +++ b/src/cline.c	Wed May 31 12:32:22 2017 +0200
     4.3 @@ -84,7 +84,7 @@
     4.4  }
     4.5  
     4.6  int exit_with_help(settings_t* settings, int code) {
     4.7 -  printf("cline - Version: " VERSION "\n\n");
     4.8 +  printf("cline - Version: " VERSION "\n");
     4.9    printHelpText();
    4.10    destroy_settings_t(settings);
    4.11    return code;

mercurial