Skip to content

Commit

Permalink
Fix autogen.sh: find command did not work on macOS
Browse files Browse the repository at this point in the history
Thanks to Ken Perry
  • Loading branch information
bertfrees committed Jan 6, 2022
1 parent 6dd1e57 commit b57cb85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autogen.sh
Expand Up @@ -28,8 +28,8 @@ set -e

# Refresh GNU autotools toolchain.
echo Cleaning autotools files...
find -type d -name autom4te.cache -print0 | xargs -0 rm -rf \;
find -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \
find . -type d -name autom4te.cache -print0 | xargs -0 rm -rf \;
find . -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \
-o -name depcomp -o -name ltmain.sh -o -name configure \
-o -name config.sub -o -name config.guess -o -name config.h.in \
-o -name mdate-sh -o -name texinfo.tex \
Expand Down

0 comments on commit b57cb85

Please sign in to comment.