mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Upstream has split version 1 of the libmodulemd recipe into its own branch and removed version 1 from the master branch and 2.x releases; as libdnf requires v1 of libmodulemd, this commit introduces a v1-specific revipe. (From OE-Core rev: e0678765b1fb66df6ec37da1d32836bee2237af1) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
553 B
Diff
23 lines
553 B
Diff
From 4e67f6049b3f822fe6f5af46790a51ace581bf82 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 0238087..126853c 100755
|
|
--- a/spec_tmpl.sh
|
|
+++ b/spec_tmpl.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/sh
|
|
+#!/bin/sh
|
|
|
|
version=$1
|
|
template=$2
|