diff options
author | Alexey Neyman <stilor@att.net> | 2018-02-23 19:05:41 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | 9dc94f36627ec79721e485bb4ae50af9fb67c9fc (patch) | |
tree | 42fc3520fbb9d6c30c61f3c3f0ff5ae2ac961cad /bootstrap | |
parent | 69df9ae9ddb806b42d962ae8a0b2b8f7b31f480e (diff) | |
download | crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.tar.gz crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.tar.bz2 crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.zip |
Install "pure data" directories
... and update .gitignore. Survives 'make distcheck'.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -738,6 +738,15 @@ gen_selection menu debug "Debug facilities" gen_selection menu comp_tools "Companion tools" gen_selection menu comp_libs "Companion libraries" +msg "*** Gathering the list of data files to install" +{ + echo -n "verbatim_data =" + find config contrib packages samples scripts -type f | LANG=C sort | while read f; do + echo " \\" + echo -n " ${f}" + done +} > verbatim-data.mk + msg "*** Running autoreconf" autoreconf -Wall --force |