diff options
author | Bradley Sepos <[email protected]> | 2017-12-03 04:38:48 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-12-03 04:38:48 -0500 |
commit | 8e2a08267705f09e92f06289820ad6ebbfc9040e (patch) | |
tree | 85400d7d6223cbad4f27753796d1222121168bf8 /make | |
parent | 4cc1e86930cd2414e5e01875997b1afb9d6895e4 (diff) |
build: Additional hashbang compatibility for BSD-like systems.
Fixes #1040.
Diffstat (limited to 'make')
-rwxr-xr-x | make/config.guess | 3 | ||||
-rwxr-xr-x | make/xcodemake | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/make/config.guess b/make/config.guess index 31e01efec..02cf497ba 100755 --- a/make/config.guess +++ b/make/config.guess @@ -1,4 +1,5 @@ -#! /bin/sh +#!/bin/sh +# ^ REMOVE SPACE WHEN UPDATING (for BSD) # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. diff --git a/make/xcodemake b/make/xcodemake index 972f6d386..4b0c29119 100755 --- a/make/xcodemake +++ b/make/xcodemake @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # set -e |