From 2795813c6999bfd944a6d266d23fc0989e041753 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Fri, 22 Feb 2013 17:10:48 -0700 Subject: [PATCH] run: use portable shell Nothing in run required bash, except for the shebang. On systems where /bin/bash doesn't exist (I hit it on FreeBSD), using /bin/sh instead fixes a 'make check' failure: gmake[3]: Entering directory `/usr/home/dummy/libvirt/python' GEN check-local /usr/local/bin/bash: ../run: /bin/bash: bad interpreter: No such file or directory * run.in: Use /bin/sh, not bash. --- run.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.in b/run.in index 845eef5494..50635229a1 100644 --- a/run.in +++ b/run.in @@ -1,6 +1,6 @@ -#!/bin/bash - +#!/bin/sh # libvirt 'run' programs locally script -# Copyright (C) 2012 Red Hat, Inc. +# Copyright (C) 2012-2013 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by