diff options
author | 2017-11-20 14:10:55 -0500 | |
---|---|---|
committer | 2017-11-20 14:14:07 -0500 | |
commit | b0b74ce3b8aa90a952db8dd1062e4a0a9865f3b6 (patch) | |
tree | 8ea1e233145810b087db0e6f0f41429537907a4a /sys-boot/systemd-boot/files | |
parent | net-print/hplip-plugin: Fix SRC_URI (diff) | |
download | gentoo-b0b74ce3b8aa90a952db8dd1062e4a0a9865f3b6.tar.gz gentoo-b0b74ce3b8aa90a952db8dd1062e4a0a9865f3b6.tar.bz2 gentoo-b0b74ce3b8aa90a952db8dd1062e4a0a9865f3b6.zip |
sys-boot/systemd-boot: bump to 235
Closes: https://bugs.gentoo.org/638238
Package-Manager: Portage-2.3.14_p5, Repoman-2.3.6
Diffstat (limited to 'sys-boot/systemd-boot/files')
-rw-r--r-- | sys-boot/systemd-boot/files/235-libshared-static.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys-boot/systemd-boot/files/235-libshared-static.patch b/sys-boot/systemd-boot/files/235-libshared-static.patch new file mode 100644 index 000000000000..2a0bf678539b --- /dev/null +++ b/sys-boot/systemd-boot/files/235-libshared-static.patch @@ -0,0 +1,24 @@ +--- a/meson.build ++++ b/meson.build +@@ -1505,9 +1505,8 @@ if conf.get('ENABLE_EFI') == 1 and conf.get('HAVE_BLKID') == 1 + exe = executable('bootctl', + 'src/boot/bootctl.c', + include_directories : includes, +- link_with : [libshared], ++ link_with : [libshared_static], + dependencies : [libblkid], +- install_rpath : rootlibexecdir, + install : true) + public_programs += [exe] + endif +diff --git a/src/shared/meson.build b/src/shared/meson.build +index 883821352..b560e65c9 100644 +--- a/src/shared/meson.build ++++ b/src/shared/meson.build +@@ -157,5 +157,6 @@ libshared_static = static_library( + libshared_name, + shared_sources, + basic_sources, ++ libsystemd_internal_sources, + include_directories : includes, + dependencies : libshared_deps) |