From 886d62fb59f204fa74eafb8e81d68414c86d8cf1 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 9 May 2009 20:07:54 +0200 Subject: [PATCH] Use 'sh' instead of 'sh -e' 'sh -e' makes the shell script die if any command returns an error which isn't caught. While this is a nice feature, this script doesn't actually need this. Not using this shell feature makes the script more portable. Thanks to Edward O'Callaghan aka eocallagha for stumbling upon this. Signed-off-by: Uli Schlachter --- build-utils/gperf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-utils/gperf.sh b/build-utils/gperf.sh index bc10775fb..ceaeba756 100755 --- a/build-utils/gperf.sh +++ b/build-utils/gperf.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh # # Copyright © 2008 Pierre Habouzit #