debian/rules: really export GBP_NETWORK_TESTS to tests
authorNicolas Boulenguez <nicolas@debian.org>
Wed, 25 May 2022 23:53:54 +0000 (01:53 +0200)
committerDoesnot Matter <you@example.com>
Thu, 26 May 2022 10:33:28 +0000 (12:33 +0200)
$(MAKE) GBP_NETWORK_TESTS=1
was setting a Make variable in the sub-Make, but not exporting it for
test/*.py subprocesses.

Makefile

index db5ad88eb77a5f5527d55943845d890e92727288..6134edab46a5e41a021011308fc020289649dd3b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ TEST_LOCALE?=C.UTF-8
 all: syntax-check test
 
 all+net:
-       $(MAKE) GBP_NETWORK_TESTS=1 all
+       GBP_NETWORK_TESTS=1 $(MAKE) all
 
 test:
        export HOME=/nonexisting;                       \