cmLocalVisualStudio7Generator: Fix name of helper function
Rename `cmLVS6G_IsFAT` to `cmLVS7G_IsFAT` since it is for the local VS 7 generator and not VS 6.
This commit is contained in:
parent
b19bc31277
commit
cd9ba3ec45
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#include <ctype.h> // for isspace
|
#include <ctype.h> // for isspace
|
||||||
|
|
||||||
static bool cmLVS6G_IsFAT(const char* dir);
|
static bool cmLVS7G_IsFAT(const char* dir);
|
||||||
|
|
||||||
class cmLocalVisualStudio7GeneratorInternals
|
class cmLocalVisualStudio7GeneratorInternals
|
||||||
{
|
{
|
||||||
|
@ -999,7 +999,7 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout,
|
||||||
|
|
||||||
// Check if we need the FAT32 workaround.
|
// Check if we need the FAT32 workaround.
|
||||||
// Check the filesystem type where the target will be written.
|
// Check the filesystem type where the target will be written.
|
||||||
if (cmLVS6G_IsFAT(target->GetDirectory(configName).c_str()))
|
if (cmLVS7G_IsFAT(target->GetDirectory(configName).c_str()))
|
||||||
{
|
{
|
||||||
// Add a flag telling the manifest tool to use a workaround
|
// Add a flag telling the manifest tool to use a workaround
|
||||||
// for FAT32 file systems, which can cause an empty manifest
|
// for FAT32 file systems, which can cause an empty manifest
|
||||||
|
@ -2365,7 +2365,7 @@ std::string cmLocalVisualStudio7Generator
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
static bool cmLVS6G_IsFAT(const char* dir)
|
static bool cmLVS7G_IsFAT(const char* dir)
|
||||||
{
|
{
|
||||||
if(dir[0] && dir[1] == ':')
|
if(dir[0] && dir[1] == ':')
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue