diff options
author | Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com> | 2018-01-29 09:26:38 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-01-29 14:40:54 +0100 |
commit | 37ebd3b782fefb43baf16d1fd0f36ece5181b70e (patch) | |
tree | f7230803dcc30a9e011584a61b79ba05bfe23c3b /package/gpsd/0001-do-not-interact-with-systemctl-when-cross-compiling.patch | |
parent | cd431297e384f11a2ec285c4ec14a49a7f89fe3a (diff) | |
download | buildroot-37ebd3b782fefb43baf16d1fd0f36ece5181b70e.tar.gz buildroot-37ebd3b782fefb43baf16d1fd0f36ece5181b70e.zip |
package/gpsd: upgrade to 3.17, remove obsolete patch
The upstream patch which disables the build-time systemctl call made it into
this release so removing it here. Also adding hash for the COPYING file.
Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gpsd/0001-do-not-interact-with-systemctl-when-cross-compiling.patch')
-rw-r--r-- | package/gpsd/0001-do-not-interact-with-systemctl-when-cross-compiling.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/gpsd/0001-do-not-interact-with-systemctl-when-cross-compiling.patch b/package/gpsd/0001-do-not-interact-with-systemctl-when-cross-compiling.patch deleted file mode 100644 index 9e91a02ef3..0000000000 --- a/package/gpsd/0001-do-not-interact-with-systemctl-when-cross-compiling.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 777cb3737ae85b13642fff48eabb601c4d40f527 Mon Sep 17 00:00:00 2001 -From: James Knight <james.d.knight@live.com> -Date: Tue, 16 Feb 2016 23:51:08 -0500 -Subject: [PATCH] do not interact with systemctl when cross-compiling - -The installation process for GPSd on a systemd environment will attempt -to reload systemd's manager configuration (systemctl daemon-reload). -This is to allow the system to take advantage of the newly installed -GPSd services. When cross-compiling, the installation process should not -attempt to interact with the build environment's systemd instance (if -any). The following change checks if the build is not cross compiling -(via 'not env["sysroot"]') before attempting to do a systemd reload. - -Signed-off-by: James Knight <james.d.knight@live.com> -[yann.morin.1998@free.fr: tweak to apply on 3.16] -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> ---- - SConstruct | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/SConstruct b/SConstruct -index c3bfd0d1..97c1b3a9 100644 ---- a/SConstruct -+++ b/SConstruct -@@ -1909,10 +1909,12 @@ udev_install = Utility('udev-install', 'install', [ - ] + hotplug_wrapper_install) - - if env['systemd']: -+ env.Requires(udev_install, systemd_install) -+ -+if env['systemd'] and not env["sysroot"]: - systemctl_daemon_reload = Utility('systemctl-daemon-reload', '', [ 'systemctl daemon-reload || true']) - env.AlwaysBuild(systemctl_daemon_reload) - env.Precious(systemctl_daemon_reload) -- env.Requires(udev_install, systemd_install) - env.Requires(systemctl_daemon_reload, systemd_install) - env.Requires(udev_install, systemctl_daemon_reload) - --- -2.11.0 - |