diff options
author | Brad King <brad.king@kitware.com> | 2016-10-14 13:02:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-10-14 13:02:51 (GMT) |
commit | eb923da2c41ab811a6adec44ef87f3aa8bd26849 (patch) | |
tree | 615d48696d1f9137d0a64c97c29da3643e764a0d /Source | |
parent | 02946e0b956061092c2406ed94ab3d9a0beeaffb (diff) | |
parent | 39b08858f676f0251898ffc7601ad216bb87ae21 (diff) | |
download | CMake-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.cxx | 1 |
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) |