summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-10-14 13:02:51 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-10-14 13:02:51 (GMT)
commiteb923da2c41ab811a6adec44ef87f3aa8bd26849 (patch)
tree615d48696d1f9137d0a64c97c29da3643e764a0d /Source
parent02946e0b956061092c2406ed94ab3d9a0beeaffb (diff)
parent39b08858f676f0251898ffc7601ad216bb87ae21 (diff)
downloadCMake-eb923da2c41ab811a6adec44ef87f3aa8bd26849.zip
CMake-eb923da2c41ab811a6adec44ef87f3aa8bd26849.tar.gz
CMake-eb923da2c41ab811a6adec44ef87f3aa8bd26849.tar.bz2
Merge topic 'flush-archive-list'
39b08858 cmSystemTools: Flush output buffer for list_item_verbose
Diffstat (limited to 'Source')
-rw-r--r--Source/cmSystemTools.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index d800ef8..0a3a1ab 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1499,6 +1499,7 @@ void list_item_verbose(FILE* out, struct archive_entry* entry)
{
fprintf(out, " -> %s", archive_entry_symlink(entry));
}
+ fflush(out);
}
long copy_data(struct archive* ar, struct archive* aw)