aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac1
-rw-r--r--libasn1fix/check_fixer.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 6ff6f138..870ee8f6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,10 +5,10 @@ SUBDIRS = \
libasn1parser libasn1fix \
libasn1print libasn1compiler \
skeletons examples \
- doc asn1c
+ doc tests asn1c
docsdir = $(datadir)/doc/asn1c
docs_DATA = README.md FAQ ChangeLog BUGS TODO
-EXTRA_DIST = README.md FAQ LICENSE BUGS tests/
+EXTRA_DIST = README.md FAQ LICENSE BUGS
diff --git a/configure.ac b/configure.ac
index cb014d1f..64810bbb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -132,6 +132,7 @@ doc/docsrc/Makefile \
skeletons/Makefile \
examples/Makefile \
doc/man/Makefile \
+tests/Makefile \
asn1c/Makefile \
doc/Makefile \
Makefile \
diff --git a/libasn1fix/check_fixer.c b/libasn1fix/check_fixer.c
index 18633241..4279b059 100644
--- a/libasn1fix/check_fixer.c
+++ b/libasn1fix/check_fixer.c
@@ -68,7 +68,7 @@ main(int ac, char **av) {
fprintf(stderr, "%s: %s\n", asn1_tests_dir, strerror(errno));
assert(ret == 0);
/* For some reasons, tests could be hidden under extra tests dir. */
- if(chdir("tests") == 0) {
+ if(0 && chdir("tests") == 0) {
skeletons_hier_level++;
}
#ifdef _WIN32