diff options
author | grimreaper <eitan@eitanadler.com> | 2013-11-23 22:43:40 -0500 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2013-12-25 10:22:25 -0500 |
commit | f87071b7e21f8d6b1d942e7521e7623393c8875f (patch) | |
tree | f4f852027bdec41fe51f10407ffdd5ea1fcaa003 | |
parent | 5e455be5f3e14d89a8cebdedc755264647747639 (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.
-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 |