diff options
author | Adam Duskett <Aduskett@gmail.com> | 2018-12-22 20:12:08 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-26 21:53:13 +0100 |
commit | 0b213d5a38361408dd82b3c61bf31e6d7efee61e (patch) | |
tree | 51d07ea817466f93cb4dd4e00e259697279d1e14 /package/systemd/0006-meson.build-fix-detection-of-Werror-shadow.patch | |
parent | e61c44888a2a327e3e5c88fe23722eaa2e463856 (diff) | |
download | buildroot-0b213d5a38361408dd82b3c61bf31e6d7efee61e.tar.gz buildroot-0b213d5a38361408dd82b3c61bf31e6d7efee61e.zip |
package/systemd: bump to v240
In addition:
- Remove unused option -Dkill-path.
(See commit 9a85778412fa3e3f8d4561064131ba69f3259b28)
- Change option -Dmyhostname to -Dnss-myhostname.
- Remove patches from upstream.
- Update hash of README file. The changes are unrelated to licensing.
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Tested-by: Jérémy Rosen <jeremy.rosen@smile.fr>
[Thomas: update the hash of the README file.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/systemd/0006-meson.build-fix-detection-of-Werror-shadow.patch')
-rw-r--r-- | package/systemd/0006-meson.build-fix-detection-of-Werror-shadow.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/package/systemd/0006-meson.build-fix-detection-of-Werror-shadow.patch b/package/systemd/0006-meson.build-fix-detection-of-Werror-shadow.patch deleted file mode 100644 index 0aa3189206..0000000000 --- a/package/systemd/0006-meson.build-fix-detection-of-Werror-shadow.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 7bd6e6db3dbb980c099b444c61d9aff7fcc636cf Mon Sep 17 00:00:00 2001 -From: Fabrice Fontaine <fontaine.fabrice@gmail.com> -Date: Thu, 29 Nov 2018 13:22:08 +0100 -Subject: [PATCH] meson.build: fix detection of -Werror=shadow - -Pass -Werror=shadow in args of cc.compiles otherwise test will always -succeed -This fix a build failure with gcc 4.7.3 - -Fixes: - - http://autobuild.buildroot.org/results/ffd71c473d3b29618c18cd2e04705370266696f2 - -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> -[Upstream status: https://github.com/systemd/systemd/pull/10993] ---- - meson.build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/meson.build b/meson.build -index 37ae27b4a..980150ac8 100644 ---- a/meson.build -+++ b/meson.build -@@ -396,7 +396,7 @@ if cc.compiles(''' - struct timespec now; - return 0; - } --''', name : '-Werror=shadow with local shadowing') -+''', args: '-Werror=shadow', name : '-Werror=shadow with local shadowing') - add_project_arguments('-Werror=shadow', language : 'c') - endif - --- -2.14.1 - |