BUG: SGI make can support suffixes only up to 32 characters. Renaming .hpux_make_must_have_suffixes_list to .hpux_make_needs_suffix_list.

This commit is contained in:
Brad King 2005-03-02 08:51:48 -05:00
parent a00d3d39a5
commit 749b80c7ed
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}