From 69746cd8631060aa869799a63122defbac8a51cc Mon Sep 17 00:00:00 2001 From: Sitsofe Wheeler Date: Sun, 29 Oct 2017 16:24:24 +0000 Subject: [PATCH] fio: fix interpreter lines Minor changes to adhere to various distro packaging guidelines (e.g. https://fedoraproject.org/wiki/Packaging:Guidelines#Shebang_lines ): - doc/conf.py doesn't need an interpreter line because it's not executable. - Make the genfio interpreter line use an absolute path rather than env. Signed-off-by: Sitsofe Wheeler --- doc/conf.py | 1 - tools/genfio | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 4102140a..d4dd9d20 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # fio documentation build configuration file, created by diff --git a/tools/genfio b/tools/genfio index 68004520..67311efc 100755 --- a/tools/genfio +++ b/tools/genfio @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/bash # # Copyright (C) 2013 eNovance SAS # Author: Erwan Velu -- 2.25.1