[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-296
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2962-g2f4a028 |
Date: |
Fri, 20 Apr 2018 07:09:42 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.2-stable has been updated
via 2f4a02886e94b4300585c7115d6c32a12df55f45 (commit)
from 84d776126c7bb7cae41a7d870232ef05b4e34fbd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=2f4a02886e94b4300585c7115d6c32a12df55f45
commit 2f4a02886e94b4300585c7115d6c32a12df55f45
Author: Arnold D. Robbins <address@hidden>
Date: Fri Apr 20 14:09:23 2018 +0300
Fix readdir_retest test for out of tree builds.
diff --git a/test/ChangeLog b/test/ChangeLog
index 3f5a274..7766653 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2018-04-20 Arnold D. Robbins <address@hidden>
+
+ * Makefile.am (readdir_retest): Use $(srcdir) to reference source
+ files so that out of tree builds can run make check. Thanks
+ to Juan Manuel Guerrero <address@hidden> for the report.
+
2018-04-19 Arnold D. Robbins <address@hidden>
* nonfatal1.awk, nonfatal1.ok: Change to use 1.2.3.4.5
diff --git a/test/Makefile.am b/test/Makefile.am
index 5baa906..c5b60b8 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2274,8 +2274,8 @@ readdir_test:
readdir_retest:
@echo $@
- @$(AWK) -lreaddir -F/ -f address@hidden "$(top_srcdir)" > address@hidden
- @$(AWK) -lreaddir_test -F/ -f address@hidden "$(top_srcdir)" > _$@
+ @$(AWK) -lreaddir -F/ -f "$(srcdir)"/address@hidden "$(top_srcdir)" >
address@hidden
+ @$(AWK) -lreaddir_test -F/ -f "$(srcdir)"/address@hidden
"$(top_srcdir)" > _$@
@-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
fts:
diff --git a/test/Makefile.in b/test/Makefile.in
index c827340..e2d9192 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -2714,8 +2714,8 @@ readdir_test:
readdir_retest:
@echo $@
- @$(AWK) -lreaddir -F/ -f address@hidden "$(top_srcdir)" > address@hidden
- @$(AWK) -lreaddir_test -F/ -f address@hidden "$(top_srcdir)" > _$@
+ @$(AWK) -lreaddir -F/ -f "$(srcdir)"/address@hidden "$(top_srcdir)" >
address@hidden
+ @$(AWK) -lreaddir_test -F/ -f "$(srcdir)"/address@hidden
"$(top_srcdir)" > _$@
@-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
fts:
-----------------------------------------------------------------------
Summary of changes:
test/ChangeLog | 6 ++++++
test/Makefile.am | 4 ++--
test/Makefile.in | 4 ++--
3 files changed, 10 insertions(+), 4 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2962-g2f4a028,
Arnold Robbins <=