From 9935b4fd66eee0b70ce8f37df12ed8ad87b3d6f4 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Sun, 9 Feb 2014 10:56:26 -0500 Subject: [PATCH] autogen.sh: use #!/bin/sh instead of #!/bin/bash We don't have any bashisms in this file, so we may as well use sh. https://bugzilla.gnome.org/show_bug.cgi?id=722530 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 714bc1645..8efa68349 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0`