build_cross_tools: Also touch .in files to prevent their regeneration.

Change-Id: Id893460327fd6db064c6fc0fb4de8e6ada1b1773
Reviewed-on: https://review.haiku-os.org/496
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
waddlesplash 2018-08-28 17:26:45 -04:00
parent b41678294b
commit d28caaed68
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ find "$binutilsSourceDir" "$gccSourceDir" -name \*.info -print0 | xargs -0 touch
# touch all configure files in order to avoid them being auto-rebuilt,
# as this often fails because the host system does not have the exact
# version of autofools that GCC wants
find "$binutilsSourceDir" "$gccSourceDir" -name configure -print0 | xargs -0 touch
find "$binutilsSourceDir" "$gccSourceDir" \( -name configure -o -name \*.in \) -print0 | xargs -0 touch
# create the object and installation directories for the cross compilation tools
objDir="${installDir}-build"