summaryrefslogtreecommitdiff
path: root/Tests/FindPackageModeMakefileTest
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-01-11 13:58:23 +0100
committerStephen Kelly <steveire@gmail.com>2014-01-11 13:58:23 +0100
commitdea71aae6d87189f935376bece28325316df4afc (patch)
treea5391ae9af1580fad1eeae86f7c80c76a2e519b3 /Tests/FindPackageModeMakefileTest
parentcb7af7af44bd9ce5ac11e345b1756ea0770bbc83 (diff)
downloadcmake-dea71aae6d87189f935376bece28325316df4afc.tar.gz
Tests: Fix find-package mode test.
The all target was depending on the clean and pngtest targets, but when running the tests with -jN, those can be executed out of order. Make the main.o target depend on the clean target instead to fix this.
Diffstat (limited to 'Tests/FindPackageModeMakefileTest')
-rw-r--r--Tests/FindPackageModeMakefileTest/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/FindPackageModeMakefileTest/Makefile.in b/Tests/FindPackageModeMakefileTest/Makefile.in
index c91d8a0184..e4df9d6461 100644
--- a/Tests/FindPackageModeMakefileTest/Makefile.in
+++ b/Tests/FindPackageModeMakefileTest/Makefile.in
@@ -9,9 +9,9 @@ CMAKE_FOO = $(CMAKE) --find-package -DCMAKE_MODULE_PATH=$(CMAKE_CURRENT_BINARY_D
tmp = tmp.txt
-all: clean pngtest
+all: pngtest
-main.o: main.cpp
+main.o: clean main.cpp
@$(CMAKE_FOO) -DMODE=COMPILE >$(tmp)
@foo="`cat $(tmp)`"; \
printf '"%s" %s %s -c main.cpp\n' $(CMAKE_CXX_COMPILER) "$(CXXFLAGS)" "$$foo" >$(tmp)