From a7441ce80e0869de1848c70b5a75a61c3d9d1b15 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 5 Jun 2006 15:28:33 -0400 Subject: [PATCH] COMP: Removed unused variable. --- Source/cmAddSubDirectoryCommand.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/cmAddSubDirectoryCommand.cxx b/Source/cmAddSubDirectoryCommand.cxx index 8f2849901e..d44359c202 100644 --- a/Source/cmAddSubDirectoryCommand.cxx +++ b/Source/cmAddSubDirectoryCommand.cxx @@ -54,14 +54,12 @@ bool cmAddSubDirectoryCommand::InitialPass } // check for relative arguments - bool relativeSource = true; std::string binPath = binArg; std::string srcPath = std::string(this->Makefile->GetCurrentDirectory()) + "/" + srcArg; // if the path does not exist then the arg was relative if (!cmSystemTools::FileIsDirectory(srcPath.c_str())) { - relativeSource = false; srcPath = srcArg; if (!cmSystemTools::FileIsDirectory(srcPath.c_str())) {