mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
(From OE-Core rev: cd610101dc8fcb0cabe351085d36823c5bd7eb19) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
741 B
Diff
27 lines
741 B
Diff
From b2e67642fd8cb64d8cb1cca9e759396c1c10807d Mon Sep 17 00:00:00 2001
|
|
From: Calvin Buckley <calvin@cmpct.info>
|
|
Date: Tue, 11 Jul 2023 19:22:41 -0300
|
|
Subject: [PATCH] Fix missing basename include on macOS
|
|
|
|
Upstream-Status: Backport [https://github.com/rpm-software-management/rpm/commit/b2e67642fd8cb64d8cb1cca9e759396c1c10807d]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
tools/rpmuncompress.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/tools/rpmuncompress.c b/tools/rpmuncompress.c
|
|
index bd4146d54..58ddf5683 100644
|
|
--- a/tools/rpmuncompress.c
|
|
+++ b/tools/rpmuncompress.c
|
|
@@ -1,6 +1,7 @@
|
|
#include "system.h"
|
|
|
|
#include <popt.h>
|
|
+#include <libgen.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
--
|
|
2.43.0
|
|
|