From 10ee8843e79763e8b6ff967f8a2b5d5b92411f90 Mon Sep 17 00:00:00 2001 From: Sitsofe Wheeler Date: Sun, 1 Mar 2020 22:01:39 +0000 Subject: [PATCH] genfio: use /bin/bash hashbang Not all distros have done usrmerge - Debian https://salsa.debian.org/debian/fio/-/blob/5a608e04b947aed0d3b49d7ca9a85ed9afe9ec56/debian/patches/genfio-interpreter and SUSE (https://build.opensuse.org/request/show/541207 ) have been carrying a patch changing the interpreter for genfio back to /bin/bash and that's before you get to other OSes such as macOS... Since /bin/bash works everywhere let's do this upstream too. Fixes: https://github.com/axboe/fio/pull/883 Inspired-by: Changcheng Liu Signed-off-by: Sitsofe Wheeler --- tools/genfio | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/genfio b/tools/genfio index 286d814d..8518bbcc 100755 --- a/tools/genfio +++ b/tools/genfio @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # # Copyright (C) 2013 eNovance SAS # Author: Erwan Velu -- 2.25.1