shithub: aubio

Download patch

ref: 701999c52664ee95e4039eca9cedb89d68afd6d7
parent: eadb7f61c8851bdc2438e9f3c7e321d700d9fe50
author: K <kayo@illumium.org>
date: Thu Jan 23 11:39:59 EST 2020

Fixed shebangs in scripts

--- a/scripts/build_android
+++ b/scripts/build_android
@@ -1,4 +1,4 @@
-#! /bin/bash
+#! /usr/bin/env bash
 
 set -e
 set -x
--- a/scripts/build_emscripten
+++ b/scripts/build_emscripten
@@ -1,4 +1,4 @@
-#! /bin/bash
+#! /usr/bin/env bash
 
 function checkprog() {
   type $1 >/dev/null 2>&1 || { echo >&2 "$1 required but not found, aborting."; exit 1; }
--- a/scripts/build_mingw
+++ b/scripts/build_mingw
@@ -1,4 +1,4 @@
-#! /bin/bash
+#! /usr/bin/env bash
 
 # This script cross compiles aubio for windows using mingw, four times:
 #
--- a/scripts/get_waf.sh
+++ b/scripts/get_waf.sh
@@ -1,4 +1,4 @@
-#! /bin/bash
+#! /usr/bin/env bash
 
 set -e
 #set -x