summaryrefslogtreecommitdiff
path: root/testenv
diff options
context:
space:
mode:
authorDarshit Shah <darnir@gnu.org>2022-02-26 15:32:12 +0100
committerDarshit Shah <darnir@gnu.org>2022-02-26 15:45:02 +0100
commit3a470a90f2811832166c47edb7636b5d7652a2ab (patch)
tree0a09bafe1346537d9700a41f6192b63f6f214dea /testenv
parentf5263969fa4aa518384b44d7bb334fdb232f7a0a (diff)
downloadwget-3a470a90f2811832166c47edb7636b5d7652a2ab.tar.gz
Cleanup some incorrect uses of AM Conditionals
* configure.ac: Replace IRI_IS_ENABLED with WITH_IRI and METALINK_IS_ENABLED with WITH_METALINK * src/Makefile.am: Add the .c and .h files for IRI, Metalink and Xattr support to wget_SOURCES directly when needed instead of adding them as object files. * testenv/Makefile.am: Rename METALINK_IS_ENABLED to WITH_METALINK
Diffstat (limited to 'testenv')
-rw-r--r--testenv/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/testenv/Makefile.am b/testenv/Makefile.am
index 6e3362f6..f222ff3d 100644
--- a/testenv/Makefile.am
+++ b/testenv/Makefile.am
@@ -116,7 +116,7 @@ endif
if HAVE_PYTHON3
TESTS = $(DEFAULT_TESTS)
-if METALINK_IS_ENABLED
+if WITH_METALINK
TESTS += $(METALINK_TESTS)
endif
endif