For PR351:

Replace MakeFileReadable and MakeFileExecutable (from FileUtilities) with
sys::Path::makeReadable and sys::Path:makeExecutable, respectively.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18909 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-12-13 20:03:02 +00:00
parent de97b5788c
commit 319cdeccd1
2 changed files with 6 additions and 6 deletions

View File

@ -329,11 +329,11 @@ int main(int argc, char **argv, char **envp) {
}
// Make the script executable...
MakeFileExecutable(OutputFilename);
sys::Path(OutputFilename).makeExecutable();
// Make the bytecode file readable and directly executable in LLEE as well
MakeFileExecutable(RealBytecodeOutput);
MakeFileReadable(RealBytecodeOutput);
sys::Path(RealBytecodeOutput).makeExecutable();
sys::Path(RealBytecodeOutput).makeReadable();
}
} catch (const char*msg) {
std::cerr << argv[0] << ": " << msg << "\n";

View File

@ -527,11 +527,11 @@ int main(int argc, char **argv, char **envp) {
}
// Make the script executable...
MakeFileExecutable(OutputFilename);
sys::Path(OutputFilename).makeExecutable();
// Make the bytecode file readable and directly executable in LLEE as well
MakeFileExecutable(RealBytecodeOutput);
MakeFileReadable(RealBytecodeOutput);
sys::Path(RealBytecodeOutput).makeExecutable();
sys::Path(RealBytecodeOutput).makeReadable();
}
return 0;