diff options
author | Kirill K. Smirnov <kirill.k.smirnov@gmail.com> | 2023-07-29 14:58:39 +0300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-08-04 16:43:40 +1200 |
commit | eb62ec3fbe3982f5f16561675fd0820d4313a0b4 (patch) | |
tree | 352b86944ae47008c1913c9b1bebfd7e21477854 /bootstrap | |
parent | 41f5d4905351f33b6119d01a076a8de2ba9d4982 (diff) | |
download | crosstool-ng-eb62ec3fbe3982f5f16561675fd0820d4313a0b4.tar.gz crosstool-ng-eb62ec3fbe3982f5f16561675fd0820d4313a0b4.tar.bz2 crosstool-ng-eb62ec3fbe3982f5f16561675fd0820d4313a0b4.zip |
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 <kirill.k.smirnov@gmail.com>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |