Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 1 | From 4e67f6049b3f822fe6f5af46790a51ace581bf82 Mon Sep 17 00:00:00 2001 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Tue, 6 Nov 2018 13:41:29 +0100 |
| 4 | Subject: [PATCH] spec_tmpl.sh: use /bin/sh, not /usr/bin/sh |
| 5 | |
| 6 | Upstream-Status: Pending |
| 7 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| 8 | |
| 9 | --- |
| 10 | spec_tmpl.sh | 2 +- |
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 12 | |
| 13 | diff --git a/spec_tmpl.sh b/spec_tmpl.sh |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 14 | index 0238087..126853c 100755 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 15 | --- a/spec_tmpl.sh |
| 16 | +++ b/spec_tmpl.sh |
| 17 | @@ -1,4 +1,4 @@ |
| 18 | -#!/usr/bin/sh |
| 19 | +#!/bin/sh |
| 20 | |
| 21 | version=$1 |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 22 | template=$2 |