build: autogen.sh permission
📽 Optimized OpenGL/Graphics Math (glm) for C
Brought to you by:
recp
Originally created by: recp
Homebrew team wanted me to create an issue about permissions of autogen.sh. FWIW, Build instructions are already placed in README and docs.
autogen.sh file is not set to be executable. It is just a wrapper that calls these commands for you:
autoheader, libtoolize, aclocal, autoconfautomakeyou may need execute permission to execute it (autogen.sh). You have a few options to execute autogen.sh, two of them:
set a execute permission and run it:
:::bash
$ chmod +x ./autogen.sh
$ ./autogen.sh
use sh to execute it:
:::bash
$ sh ./autogen.sh