diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-11-14 11:13:24 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-11-14 11:13:24 +0100 |
commit | 22f7fa4d893e9e32bd0196ae0a9616f16a7768d9 (patch) | |
tree | 1ff0a31412bf0aed69d36246cc0924a029d9d57f /tests | |
parent | 462a4f5e49bf6362403e96f7da069a393d0c04e3 (diff) |
Fix "make distcheck".
* Makefile.am (AM_TESTS_ENVIRONMENT): New variable.
(EXTRA_DIST): Add test-driver.scm and tests.
* tests/operations.scm (asset): Look up abs_top_srcdir environment
variable.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/operations.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/operations.scm b/tests/operations.scm index 52d1896..3cd8d1a 100644 --- a/tests/operations.scm +++ b/tests/operations.scm @@ -28,7 +28,7 @@ (test-begin "operations") (define (asset name) - (with-input-from-file (string-append (getenv "srcdir") + (with-input-from-file (string-append (getenv "abs_top_srcdir") "/tests/" name) read-string)) |