Skip to content

Commit cf39db1

Browse files
committed
update build files
1 parent c78b5b3 commit cf39db1

File tree

11 files changed

+271
-272
lines changed

11 files changed

+271
-272
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
CHANGES
22

3+
4.0.2 Mon 01 Jul 2019 02:57:36 PM UTC
4+
5+
* Fix typo
6+
* Fix NULL-ptr dereference in shll string (Thanks to Ren Kimura<https://github.com/RKX1209>)
7+
38
4.0.1 Tue Nov 20 08:22:20 UTC 2018
49

510
* Add LDFLAGS environment variable (Thanks to zboszor <https://github.com/zboszor>)

Makefile.in

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.15.1 from Makefile.am.
1+
# Makefile.in generated by automake 1.16.1 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -162,7 +162,7 @@ am__recursive_targets = \
162162
$(RECURSIVE_CLEAN_TARGETS) \
163163
$(am__extra_recursive_targets)
164164
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
165-
cscope distdir dist dist-all distcheck
165+
cscope distdir distdir-am dist dist-all distcheck
166166
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
167167
# Read a list of newline-separated strings from the standard input,
168168
# and print each of them once, without duplicates. Input order is
@@ -310,7 +310,6 @@ pdfdir = @pdfdir@
310310
prefix = @prefix@
311311
program_transform_name = @program_transform_name@
312312
psdir = @psdir@
313-
runstatedir = @runstatedir@
314313
sbindir = @sbindir@
315314
sharedstatedir = @sharedstatedir@
316315
srcdir = @srcdir@
@@ -348,8 +347,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
348347
echo ' $(SHELL) ./config.status'; \
349348
$(SHELL) ./config.status;; \
350349
*) \
351-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
352-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
350+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
351+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
353352
esac;
354353

355354
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -510,7 +509,10 @@ distclean-tags:
510509
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
511510
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
512511

513-
distdir: $(DISTFILES)
512+
distdir: $(BUILT_SOURCES)
513+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
514+
515+
distdir-am: $(DISTFILES)
514516
$(am__remove_distdir)
515517
test -d "$(distdir)" || mkdir "$(distdir)"
516518
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \

0 commit comments

Comments
 (0)