diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-18 21:46:21 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-18 21:46:21 +0300 |
commit | 664c9b943aecbbf22c591608f26809b10cf4546e (patch) | |
tree | 55dbb7827895bae164e168c61ac80699442f8cba /test/filefuncs.awk | |
parent | 9a124d5aace4595c715665f3b5411f7d0a68c3a1 (diff) | |
parent | ba56be212f9dee0088322e1560f31b3f4693633d (diff) | |
download | egawk-664c9b943aecbbf22c591608f26809b10cf4546e.tar.gz egawk-664c9b943aecbbf22c591608f26809b10cf4546e.tar.bz2 egawk-664c9b943aecbbf22c591608f26809b10cf4546e.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test/filefuncs.awk')
-rw-r--r-- | test/filefuncs.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/filefuncs.awk b/test/filefuncs.awk index 4bbfcb55..7aa5ae6a 100644 --- a/test/filefuncs.awk +++ b/test/filefuncs.awk @@ -1,7 +1,7 @@ @load "filefuncs" BEGIN { - if (chdir("..") < 0) { + if (chdir(builddir) < 0) { printf "Error: chdir failed with ERRNO %s\n", ERRNO exit 1 } |