From: Mikhail Glushenkov Date: Sun, 15 Feb 2009 03:20:32 +0000 (+0000) Subject: Fix warning on gcc 4.3. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8eada627d56f8288137bebb490b9cc705afcbbf5;p=oota-llvm.git Fix warning on gcc 4.3. "system() declared with attribute warn_unused_result." git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64574 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index 8efa2e085e1..a8dcedb7417 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc @@ -658,7 +658,10 @@ Path::eraseFromDisk(bool remove_contents, std::string *ErrStr) const { if (remove_contents) { // Recursively descend the directory to remove its contents. std::string cmd = "/bin/rm -rf " + path; - system(cmd.c_str()); + if (system(cmd.c_str()) != 0) { + MakeErrMsg(ErrStr, path + ": failed to recursively remove directory."); + return true; + } return false; }