diff options
author | grimreaper <eitan@eitanadler.com> | 2013-11-23 22:43:40 -0500 |
---|---|---|
committer | grimreaper <eitan@eitanadler.com> | 2013-11-23 22:43:40 -0500 |
commit | 60ea2874b3ea4ef4d0efe95caf094ffd7dca3064 (patch) | |
tree | f6b0abdcc29945ddbfc8bcaf7acf43c2888e77a9 /autogen.sh | |
parent | d38bbb1e2c96314dd61faa84f2908b90ae29b987 (diff) |
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.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 607aa949..324870a3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh have_automake=false if automake --version < /dev/null > /dev/null 2>&1 ; then |