diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-07-15 22:59:09 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-07-20 21:56:27 +0200 |
commit | 1fc5a414471532765aa079c2c377fed5df00f90f (patch) | |
tree | 857b2d5a6e04fb9df7540e016bda0341ddac414d /tests | |
parent | cb787b70bf5fa16bc1f83405c16d6c092e6daf46 (diff) |
test Makefile: only feature 'unit' once in the list of dirs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 85dd7999a..c655ba239 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -30,14 +30,19 @@ EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \ serverhelp.pm tftpserver.pl rtspserver.pl directories.pm symbol-scan.pl \ certs/srp-verifier-conf certs/srp-verifier-db +# we have two variables here to make sure DIST_SUBDIRS won't get 'unit' +# added twice as then targets such as 'distclean' misbehave and try to +# do things twice in that subdir at times (and thus fails). if BUILD_UNITTESTS BUILD_UNIT = unit +DIST_UNIT = else BUILD_UNIT = +DIST_UNIT = unit endif SUBDIRS = data server libtest $(BUILD_UNIT) -DIST_SUBDIRS = $(SUBDIRS) unit +DIST_SUBDIRS = $(SUBDIRS) $(DIST_UNIT) PERLFLAGS = -I$(srcdir) |