summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorgrimreaper <eitan@eitanadler.com>2013-11-23 22:43:40 -0500
committergrimreaper <eitan@eitanadler.com>2013-11-23 22:43:40 -0500
commit60ea2874b3ea4ef4d0efe95caf094ffd7dca3064 (patch)
treef6b0abdcc29945ddbfc8bcaf7acf43c2888e77a9
parentd38bbb1e2c96314dd61faa84f2908b90ae29b987 (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-xautogen.sh2
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