mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
This is a hard requirement of the new libdnf versions. (From OE-Core rev: 4b53d713523f56994beb4a7b5dbb3347c8713e42) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
552 B
Diff
22 lines
552 B
Diff
From 590bd5ec9f378ab727ee404bb32f615e1bbd15bf Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Tue, 6 Nov 2018 13:41:29 +0100
|
|
Subject: [PATCH] spec_tmpl.sh: use /bin/sh, not /usr/bin/sh
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
spec_tmpl.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/spec_tmpl.sh b/spec_tmpl.sh
|
|
index 45009c3..307c0c2 100755
|
|
--- a/spec_tmpl.sh
|
|
+++ b/spec_tmpl.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/sh
|
|
+#!/bin/sh
|
|
|
|
version=$1
|
|
template=$2
|