summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-01 11:28:34 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-01 11:28:34 (GMT)
commita2eccb42034ff6679af6397cacc836a1ee5bbd89 (patch)
treeb449a334ea9b858e065b0fe9c29dfa05b20ba64a /Source
parentaf207d31660451069949d3443e6356934ec3ee79 (diff)
downloadCMake-a2eccb42034ff6679af6397cacc836a1ee5bbd89.zip
CMake-a2eccb42034ff6679af6397cacc836a1ee5bbd89.tar.gz
CMake-a2eccb42034ff6679af6397cacc836a1ee5bbd89.tar.bz2
Remove dependency to dynamic loader during bootstrap
Diffstat (limited to 'Source')
-rw-r--r--Source/Makefile.in2
-rw-r--r--Source/cmakemain.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Makefile.in b/Source/Makefile.in
index 57763b5..d44e29f 100644
--- a/Source/Makefile.in
+++ b/Source/Makefile.in
@@ -32,7 +32,6 @@ cmTarget.o \
cmCustomCommand.o \
cmCacheManager.o \
cmListFileCache.o \
-cmDynamicLoader.o \
cmSourceGroup.o
DEPENDS = cmConfigure.h
@@ -54,7 +53,6 @@ cmLocalUnixMakefileGenerator.o : $(DEPENDS)
cmCommands.o : $(DEPENDS) $(srcdir)/*Command*.cxx
cmTarget.o : $(DEPENDS)
cmCacheManager.o : $(DEPENDS)
-cmDynamicLoader.o : $(DEPENDS)
cmSourceGroup.o : $(DEPENDS)
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 7086e8f..81d58d4 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -25,7 +25,9 @@ int do_cmake(int ac, char** av);
int main(int ac, char** av)
{
int ret = do_cmake(ac, av);
+#ifdef CMAKE_BUILD_WITH_CMAKE
cmDynamicLoader::FlushCache();
+#endif
cmListFileCache::GetInstance()->ClearCache();
return ret;
}