aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/util-linux/patches/030-meson-don-t-use-run.patch
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-05-17 16:58:19 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2023-05-18 16:56:45 +0200
commit628a410ed149ca2bf17abd3159e44acc2920743e (patch)
treefb5eeb9b7d94561189db7374a6c2d5105e527055 /package/utils/util-linux/patches/030-meson-don-t-use-run.patch
parent13fec6830684d7711018060651d37fd25df832d6 (diff)
downloadupstream-628a410ed149ca2bf17abd3159e44acc2920743e.tar.gz
upstream-628a410ed149ca2bf17abd3159e44acc2920743e.tar.bz2
upstream-628a410ed149ca2bf17abd3159e44acc2920743e.zip
util-linux: update to 2.39
Release Notes: https://cdn.kernel.org/pub/linux/utils/util-linux/v2.39/v2.39-ReleaseNotes Remove upstreamed: 030-meson-don-t-use-run.patch 040-meson-fix-cpu_set_t-test.patch 050-meson-fix-environ-search.patch 060-meson-add-_GNU_SOURCE-for-sighandler_t.patch 070-meson-fix-isnan-check.patch 080-meson-fix-tzname-check.patch 090-meson-libpam.patch 100-meson-make-libcap-ng-dependent-on-setpriv.patch 120-meson-get-the-project-version-from-the-version-gen-s.patch 130-meson-fix-error-in-processing-version-for-pc-files.patch New: 0001-test_enosys-add-support-for-mips.patch Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de> [Refresh patches] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/utils/util-linux/patches/030-meson-don-t-use-run.patch')
-rw-r--r--package/utils/util-linux/patches/030-meson-don-t-use-run.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/package/utils/util-linux/patches/030-meson-don-t-use-run.patch b/package/utils/util-linux/patches/030-meson-don-t-use-run.patch
deleted file mode 100644
index 7803dd7725..0000000000
--- a/package/utils/util-linux/patches/030-meson-don-t-use-run.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From e25db9169450d3d5fb43656a2eae5c08999310f4 Mon Sep 17 00:00:00 2001
-From: Rosen Penev <rosenp@gmail.com>
-Date: Fri, 29 Apr 2022 16:56:54 -0700
-Subject: [PATCH 2/7] meson: don't use run
-
-Fixes cross compilation. run is not needed anyway.
-
-Signed-off-by: Rosen Penev <rosenp@gmail.com>
----
- meson.build | 6 ++----
- 1 file changed, 2 insertions(+), 4 deletions(-)
-
---- a/meson.build
-+++ b/meson.build
-@@ -577,8 +577,7 @@ int main(void) {
- return tzname ? 0 : 1;
- }
- '''.format(have ? 1 : 0)
--result = cc.run(code, name : 'using tzname[]')
--have = result.compiled() and result.returncode() == 0
-+have = cc.compiles(code, name : 'using tzname[]')
- conf.set('HAVE_TZNAME', have ? 1 : false)
-
- socket_libs = []
-@@ -641,8 +640,7 @@ int main(void) {
- return (*__progname != 0);
- }
- '''
--result = cc.run(code, name : 'using __progname')
--have = result.compiled() and result.returncode() == 0
-+have = cc.compiles(code, name : 'using __progname')
- conf.set('HAVE___PROGNAME', have ? 1 : false)
-
- build_plymouth_support = get_option('build-plymouth-support')