From 857971e81015596d53ce861d08b0e64169a33d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 3 Jan 2022 18:57:09 +0100 Subject: [PATCH] tde_install_export: Sort individual exported files before generating a summary export file so that the generated output is reproducible. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- modules/TDEMacros.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/TDEMacros.cmake b/modules/TDEMacros.cmake index bc65310..661587f 100644 --- a/modules/TDEMacros.cmake +++ b/modules/TDEMacros.cmake @@ -752,6 +752,7 @@ endmacro( tde_install_libtool_file ) function( tde_install_export ) file( GLOB export_files ${CMAKE_CURRENT_BINARY_DIR}/export-*.cmake ) + list( SORT export_files ) set( mode "WRITE" ) foreach( filename ${export_files} )