diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 6 | ||||
-rw-r--r-- | Makefile.in | 6 |
3 files changed, 9 insertions, 8 deletions
@@ -1,3 +1,8 @@ +2013-03-27 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (SUBDIRS): Move extension back into the middle of + the list so that `make check' without a prior `make' works. + 2013-03-20 Arnold D. Robbins <arnold@skeeve.com> For systems where libc is borked (MirBSD, maybe others). diff --git a/Makefile.am b/Makefile.am index 844fa2cf..1f1929a9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -67,15 +67,13 @@ distcleancheck_listfiles = \ # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. -# -# Put 'extension' last, in case building the extensions is not supported. SUBDIRS = \ . \ awklib \ doc \ po \ - test \ - extension + extension \ + test # what to make and install bin_PROGRAMS = gawk diff --git a/Makefile.in b/Makefile.in index 0e6723ce..3b9963da 100644 --- a/Makefile.in +++ b/Makefile.in @@ -398,15 +398,13 @@ distcleancheck_listfiles = \ # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. -# -# Put 'extension' last, in case building the extensions is not supported. SUBDIRS = \ . \ awklib \ doc \ po \ - test \ - extension + extension \ + test include_HEADERS = gawkapi.h |