From 32e9510d55dd28d3a3547c90a03e56a2ba390579 Mon Sep 17 00:00:00 2001 From: Berk Geveci Date: Thu, 8 Nov 2001 08:42:16 -0500 Subject: [PATCH] Needed to replace srcdir to make install targets work. --- Source/cmUnixMakefileGenerator.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 48eccbc2c..5229f3f75 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -1241,7 +1241,7 @@ void cmUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) } fout << *i << " " << prefix << l->second.GetInstallPath() << "; \\\n"; - fout << "\t elif [ -f $(srcdir)/" << *i << " ] ; then \\\n"; + fout << "\t elif [ -f $(CMAKE_CURRENT_SOURCE)/" << *i << " ] ; then \\\n"; // avoid using install-sh to install install-sh // does not work on windows.... if(*i == "install-sh") @@ -1252,7 +1252,7 @@ void cmUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) { fout << "\t $(INSTALL_DATA) "; } - fout << "$(srcdir)/" << *i + fout << "$(CMAKE_CURRENT_SOURCE)/" << *i << " " << prefix << l->second.GetInstallPath() << "; \\\n"; fout << "\telse \\\n"; fout << "\t echo \" ERROR!!! Unable to find: " << *i @@ -1281,7 +1281,7 @@ void cmUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) } fout << *i << " " << prefix << l->second.GetInstallPath() << "; \\\n"; - fout << "\t elif [ -f $(srcdir)/" << *i << " ] ; then \\\n"; + fout << "\t elif [ -f $(CMAKE_CURRENT_SOURCE)/" << *i << " ] ; then \\\n"; // avoid using install-sh to install install-sh // does not work on windows.... if(*i == "install-sh") @@ -1292,7 +1292,7 @@ void cmUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) { fout << "\t $(INSTALL_PROGRAM) "; } - fout << "$(srcdir)/" << *i + fout << "$(CMAKE_CURRENT_SOURCE)/" << *i << " " << prefix << l->second.GetInstallPath() << "; \\\n"; fout << "\telse \\\n"; fout << "\t echo \" ERROR!!! Unable to find: " << *i