diff options
author | Brad King <brad.king@kitware.com> | 2005-03-02 13:51:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-03-02 13:51:48 (GMT) |
commit | 749b80c7ed4a27c33917ea1613b1bfc4d8570fbf (patch) | |
tree | c79612e07a5d216d3b5401f1535adee303633b8a | |
parent | a00d3d39a516522cee339d8d6f722d6ffd32043b (diff) | |
download | CMake-749b80c7ed4a27c33917ea1613b1bfc4d8570fbf.zip CMake-749b80c7ed4a27c33917ea1613b1bfc4d8570fbf.tar.gz CMake-749b80c7ed4a27c33917ea1613b1bfc4d8570fbf.tar.bz2 |
BUG: SGI make can support suffixes only up to 32 characters. Renaming .hpux_make_must_have_suffixes_list to .hpux_make_needs_suffix_list.
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator2.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.cxx b/Source/cmLocalUnixMakefileGenerator2.cxx index 47a7d99..b5d5388 100644 --- a/Source/cmLocalUnixMakefileGenerator2.cxx +++ b/Source/cmLocalUnixMakefileGenerator2.cxx @@ -1206,7 +1206,8 @@ cmLocalUnixMakefileGenerator2 ".SUFFIXES", depends, no_commands); - depends.push_back(".hpux_make_must_have_suffixes_list"); + // Add a fake suffix to keep HP happy. Must be max 32 chars for SGI make. + depends.push_back(".hpux_make_needs_suffix_list"); this->WriteMakeRule(makefileStream, 0, ".SUFFIXES", depends, no_commands); } |