The following commit has been merged in the master branch:
commit 75d5272190d30e3086d0c1e1f1687ac9b04a63a1
Author: Guillem Jover <[email protected]>
Date:   Wed Apr 17 21:42:05 2013 +0200

    build: Support an unset test_tmpdir

diff --git a/Makecheck.am b/Makecheck.am
index 95e3b2e..7f0444b 100644
--- a/Makecheck.am
+++ b/Makecheck.am
@@ -10,10 +10,10 @@
 TEST_VERBOSE ?= 0
 
 check-clean:
-       rm -fr $(test_tmpdir)
+       [ -z "$(test_tmpdir)" ] || rm -fr $(test_tmpdir)
 
 check-local: $(test_data) $(test_cases)
-       $(MKDIR_P) $(test_tmpdir)
+       [ -z "$(test_tmpdir)" ] || $(MKDIR_P) $(test_tmpdir)
        
PATH="$(top_builddir)/src:$(top_builddir)/scripts:$(top_builddir)/utils:$(PATH)"
 \
          LC_ALL=C \
          $(TEST_ENV_VARS) \

-- 
dpkg's main repository


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to