From 2eefa2286aabfd0d156998af15390d7937376e16 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 29 Aug 2001 17:10:25 -0400 Subject: [PATCH] ENH: Updated generated dependencies since cable's installation directory now uses separate CxxTypes and WrapTclFacility subdirecories for includes. --- Source/cmCableWrapTclCommand.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmCableWrapTclCommand.cxx b/Source/cmCableWrapTclCommand.cxx index 03ee44aea..510d7810b 100644 --- a/Source/cmCableWrapTclCommand.cxx +++ b/Source/cmCableWrapTclCommand.cxx @@ -231,7 +231,7 @@ void cmCableWrapTclCommand::GenerateCableFiles() const cmSourceFile file; file.SetName(packageTclFileName.c_str(), outDir.c_str(), "cxx", false); // Set dependency hints. - file.GetDepends().push_back("wrapCalls.h"); + file.GetDepends().push_back("WrapTclFacility/wrapCalls.h"); m_Makefile->AddSource(file, m_TargetName.c_str()); } @@ -398,7 +398,7 @@ void cmCableWrapTclCommand::GenerateCableClassFiles(const char* name, { file.GetDepends().push_back(*source); } - file.GetDepends().push_back("wrapCalls.h"); + file.GetDepends().push_back("WrapTclFacility/wrapCalls.h"); m_Makefile->AddSource(file, m_TargetName.c_str()); }