From 96ef0a178df375330f53d05bac8e695894c53c0e Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Sun, 9 Feb 2014 10:59:39 -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=722342 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index f9c9e6b37..89ba6f592 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`