diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-17 13:35:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-17 13:35:08 +0200 |
commit | 132f956360d721fccf4f3829044f5f6eceac3ffd (patch) | |
tree | 429afc3e946f386f5d510f6c7d282553c6badae5 | |
parent | ebb8473c5de46fdf08c98f65e5996ed4ba495684 (diff) | |
download | egawk-132f956360d721fccf4f3829044f5f6eceac3ffd.tar.gz egawk-132f956360d721fccf4f3829044f5f6eceac3ffd.tar.bz2 egawk-132f956360d721fccf4f3829044f5f6eceac3ffd.zip |
Quote $(top_srcdir) in test/Makefile.am.
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/Makefile.am | 6 | ||||
-rw-r--r-- | test/Makefile.in | 6 |
3 files changed, 10 insertions, 6 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 95f8fe17..1da74f8a 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2014-01-17 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am: Quote instances of $(top_srcdir) also. + 2014-01-16 Andrew J. Schorr <aschorr@telemetry-investments.com> * Makefile.am (strftime): Remove comment about the race condition, since diff --git a/test/Makefile.am b/test/Makefile.am index cb9bdc83..8f37d25b 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1800,7 +1800,7 @@ inplace3:: testext:: @echo $@ - @$(AWK) '/^(@load|BEGIN)/,/^}/' $(top_srcdir)/extension/testext.c > testext.awk + @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) -f testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk @@ -1810,8 +1810,8 @@ readdir: echo If it does, try rerunning on an ext'[234]' filesystem. ; \ fi @echo $@ - @$(AWK) -f "$(srcdir)"/readdir.awk $(top_srcdir) > _$@ - @ls -afli $(top_srcdir) | sed 1d | $(AWK) -f "$(srcdir)"/readdir0.awk -v extout=_$@ $(top_srcdir) > $@.ok + @$(AWK) -f "$(srcdir)"/readdir.awk "$(top_srcdir)" > _$@ + @ls -afli $"(top_srcdir)" | sed 1d | $(AWK) -f "$(srcdir)"/readdir0.awk -v extout=_$@ "$(top_srcdir)" > $@.ok @-$(CMP) $@.ok _$@ && rm -f $@.ok _$@ fts: diff --git a/test/Makefile.in b/test/Makefile.in index fa0f6345..3108723f 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2223,7 +2223,7 @@ inplace3:: testext:: @echo $@ - @$(AWK) '/^(@load|BEGIN)/,/^}/' $(top_srcdir)/extension/testext.c > testext.awk + @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) -f testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk @@ -2233,8 +2233,8 @@ readdir: echo If it does, try rerunning on an ext'[234]' filesystem. ; \ fi @echo $@ - @$(AWK) -f "$(srcdir)"/readdir.awk $(top_srcdir) > _$@ - @ls -afli $(top_srcdir) | sed 1d | $(AWK) -f "$(srcdir)"/readdir0.awk -v extout=_$@ $(top_srcdir) > $@.ok + @$(AWK) -f "$(srcdir)"/readdir.awk "$(top_srcdir)" > _$@ + @ls -afli $"(top_srcdir)" | sed 1d | $(AWK) -f "$(srcdir)"/readdir0.awk -v extout=_$@ "$(top_srcdir)" > $@.ok @-$(CMP) $@.ok _$@ && rm -f $@.ok _$@ fts: |