From 944dc32ca2fc63cce1014f6deded43d592f43dc5 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 10 Sep 2013 01:31:13 -0700 Subject: [PATCH] Change all /bin/bash shebangs to use env bash. --- cycript.in | 2 +- debug.sh | 2 +- libffi.sh | 2 +- make.sh | 2 +- readline.sh | 2 +- trampoline.sh | 2 +- xcode.sh | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cycript.in b/cycript.in index 979c0c6..156e7e1 100644 --- a/cycript.in +++ b/cycript.in @@ -1,2 +1,2 @@ -#!/bin/bash +#!/usr/bin/env bash DYLD_LIBRARY_PATH=.libs exec .libs/cycript "$@" diff --git a/debug.sh b/debug.sh index 5e5682f..9f18d18 100755 --- a/debug.sh +++ b/debug.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Cycript - Optimizing JavaScript Compiler/Runtime # Copyright (C) 2009-2013 Jay Freeman (saurik) diff --git a/libffi.sh b/libffi.sh index 145668c..b9a666f 100755 --- a/libffi.sh +++ b/libffi.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Cycript - Optimizing JavaScript Compiler/Runtime # Copyright (C) 2009-2013 Jay Freeman (saurik) diff --git a/make.sh b/make.sh index ff2c5d2..bd2c7ac 100755 --- a/make.sh +++ b/make.sh @@ -1,2 +1,2 @@ -#!/bin/bash +#!/usr/bin/env bash exec make -f xcode.mk "$@" diff --git a/readline.sh b/readline.sh index 7448003..2cb615c 100755 --- a/readline.sh +++ b/readline.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Cycript - Optimizing JavaScript Compiler/Runtime # Copyright (C) 2009-2013 Jay Freeman (saurik) diff --git a/trampoline.sh b/trampoline.sh index 13248f9..f2ce916 100755 --- a/trampoline.sh +++ b/trampoline.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Cycript - Optimizing JavaScript Compiler/Runtime # Copyright (C) 2009-2013 Jay Freeman (saurik) diff --git a/xcode.sh b/xcode.sh index c04d8a7..b92a67d 100755 --- a/xcode.sh +++ b/xcode.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Cycript - Optimizing JavaScript Compiler/Runtime # Copyright (C) 2009-2013 Jay Freeman (saurik) -- 2.47.2