From cba24ea9a8ec19fc3d5c1c885337ca029346fd24 Mon Sep 17 00:00:00 2001 From: lat9nq <22451773+lat9nq@users.noreply.github.com> Date: Fri, 23 Jun 2023 18:50:09 -0400 Subject: [PATCH] generate_binary_list: Specify full path Otherwise has the convoluted DIR DIR arguments. --- src/tzdb/generate_binary_list_txt.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tzdb/generate_binary_list_txt.cmake b/src/tzdb/generate_binary_list_txt.cmake index d53c644..4edce75 100644 --- a/src/tzdb/generate_binary_list_txt.cmake +++ b/src/tzdb/generate_binary_list_txt.cmake @@ -40,7 +40,7 @@ function(get_files_nx TARG SUB_DIR) if (NOT DIR OR DIR STREQUAL "\n") continue() endif() - get_files_nx(${DIR} ${DIR}) + get_files_nx(${TARG}/${DIR} ${DIR}) endforeach() endfunction()