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:
parent
a00d3d39a5
commit
749b80c7ed
|
@ -1206,7 +1206,8 @@ cmLocalUnixMakefileGenerator2
|
||||||
".SUFFIXES",
|
".SUFFIXES",
|
||||||
depends,
|
depends,
|
||||||
no_commands);
|
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,
|
this->WriteMakeRule(makefileStream, 0,
|
||||||
".SUFFIXES", depends, no_commands);
|
".SUFFIXES", depends, no_commands);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue