Fix autogen.sh shebang line

/bin/bash does not exist on many systems.  In addition this script appears to be POSIX compatible so just use the appropriate shebang line.
This commit is contained in:
grimreaper 2013-11-23 22:43:40 -05:00
parent d38bbb1e2c
commit 60ea2874b3
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
have_automake=false
if automake --version < /dev/null > /dev/null 2>&1 ; then