From 1c52d43149930ae654b32d9af80e417d18a254db Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Fri, 10 Sep 1999 02:15:03 +0000 Subject: [PATCH] Fix shbang magic "#! /bin/sh" (correct) vs "#!/bin/sh" (incorrect) --- build/install-sh | 2 +- tests/scripts/defines.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/install-sh b/build/install-sh index b8bad2c129..c7348ecd25 100755 --- a/build/install-sh +++ b/build/install-sh @@ -1,4 +1,4 @@ -#!/bin/sh +#! /bin/sh # $OpenLDAP$ ## Copyright 1998,1999 The OpenLDAP Foundation ## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory diff --git a/tests/scripts/defines.sh b/tests/scripts/defines.sh index 94238c656d..383657603c 100755 --- a/tests/scripts/defines.sh +++ b/tests/scripts/defines.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#! /bin/sh # $OpenLDAP$ DATADIR=$SRCDIR/data -- 2.39.5