From 7fe2737dd987d4a418a2678e2a9759e5f2cd55f2 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Sat, 26 Apr 2008 08:39:27 -0400 Subject: [PATCH] BUG: fix for bug 6911, aux source dir was broken from a previous fix --- Source/cmAuxSourceDirectoryCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmAuxSourceDirectoryCommand.cxx b/Source/cmAuxSourceDirectoryCommand.cxx index 1fc3467fd..900445920 100644 --- a/Source/cmAuxSourceDirectoryCommand.cxx +++ b/Source/cmAuxSourceDirectoryCommand.cxx @@ -33,7 +33,7 @@ bool cmAuxSourceDirectoryCommand::InitialPass std::string templateDirectory = args[0]; this->Makefile->AddExtraDirectory(templateDirectory.c_str()); std::string tdir; - if(!cmSystemTools::FileExists(templateDirectory.c_str())) + if(!cmSystemTools::FileIsFullPath(templateDirectory.c_str())) { tdir = this->Makefile->GetCurrentDirectory(); tdir += "/";