COMP: Fix unused parameter warning when cmSystemTools::ChangeRPath is built without ELF support.

This commit is contained in:
Brad King 2008-03-01 15:16:49 -05:00
parent 26e58b74d1
commit 32ca01bef0
1 changed files with 1 additions and 0 deletions

View File

@ -2281,6 +2281,7 @@ bool cmSystemTools::ChangeRPath(std::string const& file,
#else
(void)file;
(void)newRPath;
(void)emsg;
return false;
#endif
}