From eb62ec3fbe3982f5f16561675fd0820d4313a0b4 Mon Sep 17 00:00:00 2001 From: "Kirill K. Smirnov" Date: Sat, 29 Jul 2023 14:58:39 +0300 Subject: bootstrap: follow symlinks newlib-nano package shares patches with newlib package via symlinks. If a user chooses local setup (--enable-local) it works perfectly, but if a user chooses normal setup (make install), the links are lost. Signed-off-by: Kirill K. Smirnov --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstrap') diff --git a/bootstrap b/bootstrap index 9ffadb72..dab89d9b 100755 --- a/bootstrap +++ b/bootstrap @@ -804,7 +804,7 @@ msg "*** Gathering the list of data files to install" { declare -A seen_files echo -n "verbatim_data =" - find COPYING config contrib licenses.d packages samples scripts -type f | LANG=C sort | while read f; do + find -L COPYING config contrib licenses.d packages samples scripts -type f | LANG=C sort | while read f; do # Implement some kind of .installignore for these files? case "${f}" in # Avoid temp files -- cgit v1.2.3