mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-06-16 22:38:16 +00:00
Kill gperf vestiges
Generate paths.sh by configure, do away with paths.mk. Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
@ -740,6 +740,7 @@ gen_selection menu comp_libs "Companion libraries"
|
||||
|
||||
msg "*** Gathering the list of data files to install"
|
||||
{
|
||||
declare -A seen_files
|
||||
echo -n "verbatim_data ="
|
||||
find config contrib packages samples scripts -type f | LANG=C sort | while read f; do
|
||||
case "${f}" in
|
||||
@ -754,8 +755,13 @@ msg "*** Gathering the list of data files to install"
|
||||
f=config/configure.in
|
||||
;;
|
||||
esac
|
||||
# Checks & substitutions above may result in duplicate files
|
||||
if [ -n "${seen_files[${f}]}" ]; then
|
||||
continue
|
||||
fi
|
||||
echo " \\"
|
||||
echo -n " ${f}"
|
||||
seen_files[${f}]=y
|
||||
done
|
||||
} > verbatim-data.mk
|
||||
|
||||
|
Reference in New Issue
Block a user