Skip to content

Commit

Permalink
Check presence of install-sh instead of config.guess
Browse files Browse the repository at this point in the history
During bootstrapping, config.guess is always present.
  • Loading branch information
albinahlback committed Mar 6, 2025
1 parent 62d2f02 commit 4eb95a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ rm -rf autom4te.cache
autoreconf -i -v -Wall

# The following lines are from Semigroups/Semigroups, written by Max Horn.
if ! test -x config/config.guess -a -x config/config.sub ;
if ! test -x config/install-sh ;
then
automake -acf 2> /dev/null || :
fi
Expand Down

0 comments on commit 4eb95a6

Please sign in to comment.