mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-18 20:37:56 +00:00
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>
This commit is contained in:
parent
41f5d49053
commit
eb62ec3fbe
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user