From eb0e84bc07d9dc7ee4d7abe44086de8fc1e6748d Mon Sep 17 00:00:00 2001 From: Georg Sauthoff Date: Tue, 29 Dec 2015 18:07:21 +0100 Subject: [PATCH] Replace /bin/sh with env sh in the bang line. The bang line is changed since /bin/sh isn't POSIX conforming on Solaris 10. And according to POSIX /bin/sh does not even have to be POSIX conforming. Thus, it is more portable to rewrite the bang line using env. --- tests/test_output_strings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_output_strings b/tests/test_output_strings index 44e0cb0..1e6ee7c 100644 --- a/tests/test_output_strings +++ b/tests/test_output_strings @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh . ./test_vars -- 2.40.0