summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-03-14 16:58:56 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-03-14 16:58:56 (GMT)
commit90169d041ce5657ace8518830ac63ce30d3c0604 (patch)
tree79b90eb11bbcfd7b8e6b2a3b97861b08d164e2d8 /Source/cmMakefile.cxx
parent0b6ae58a0647c3cf496a1cc0236e036d3ac076b1 (diff)
downloadCMake-90169d041ce5657ace8518830ac63ce30d3c0604.zip
CMake-90169d041ce5657ace8518830ac63ce30d3c0604.tar.gz
CMake-90169d041ce5657ace8518830ac63ce30d3c0604.tar.bz2
make sure M is after m
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 4f3e3ba..ab178a0 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -43,12 +43,12 @@ cmMakefile::cmMakefile()
m_SourceFileExtensions.push_back( "c" );
m_SourceFileExtensions.push_back( "C" );
- m_SourceFileExtensions.push_back( "M" );
m_SourceFileExtensions.push_back( "c++" );
m_SourceFileExtensions.push_back( "cc" );
m_SourceFileExtensions.push_back( "cpp" );
m_SourceFileExtensions.push_back( "cxx" );
m_SourceFileExtensions.push_back( "m" );
+ m_SourceFileExtensions.push_back( "M" );
m_SourceFileExtensions.push_back( "mm" );
m_HeaderFileExtensions.push_back( "h" );