浏览代码

Use variables instead of substitutions

Using variables removes the ambiguity about when to use variables and
when to use substitutions. Variables always work. Substitutions only
work when Autoconf knows about them which is not always the case.

The variables are also placed between quotes to ensures spaces in the
variables are handled properly.
cypherpunks 10 年之前
父节点
当前提交
01a9575ad0
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/test/include.am

+ 4 - 4
src/test/include.am

@@ -1,8 +1,8 @@
 AM_TESTS_ENVIRONMENT = \
-	export PYTHON=@PYTHON@; \
-	export SHELL=@SHELL@; \
-	export abs_top_srcdir=@abs_top_srcdir@; \
-	export builddir=@builddir@; \
+	export PYTHON="$(PYTHON)"; \
+	export SHELL="$(SHELL)"; \
+	export abs_top_srcdir="$(abs_top_srcdir)"; \
+	export builddir="$(builddir)"; \
 	export TESTING_TOR_BINARY="$(TESTING_TOR_BINARY)";
 
 TESTSCRIPTS = src/test/test_zero_length_keys.sh