Skip to content

Commit

Permalink
Fix a portability issue
Browse files Browse the repository at this point in the history
The issue is using the GNU `find` extension `-wholename`. Brian Callahan
of OpenBSD found the problem and proposed the fix, which is in this
commit.
  • Loading branch information
Gavin Howard committed Nov 28, 2020
1 parent 44d9a63 commit da9d7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ gen_file_list() {
while [ "$#" -ge 1 ]; do
a="$1"
shift
args="$args ! -wholename src/${a}"
args="$args ! -path src/${a}"
done

else
Expand Down

0 comments on commit da9d7ae

Please sign in to comment.