fix Makefile failing on strip #1
Reference in New Issue
Block a user
No description provided.
Delete Branch ":master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On most Linux distros,
make
defaults to using/bin/sh
, which doesn't support the*.{exe,dll}
substitution used in themake dist
command. This PR changes the shell thatmake
uses to/bin/bash
, which does support it.Thanks for the fix!