diff options
author | 2019-12-16 11:30:43 +0100 | |
---|---|---|
committer | 2019-12-18 18:27:41 +0100 | |
commit | 3e092163e54a36cab03b19dd8e0c2cffa31aa0a5 (patch) | |
tree | 12ca2be4e41357ccfdf4a06c7c9af9c8455579bf /package/exim/exim.mk | |
parent | 6c3944a0572d101e583c62d62144ba1b2c6cbd1a (diff) | |
download | buildroot-3e092163e54a36cab03b19dd8e0c2cffa31aa0a5.tar.gz buildroot-3e092163e54a36cab03b19dd8e0c2cffa31aa0a5.tar.bz2 |
package: rely on systemctl preset-all for buildroot-provided services
All the packages in this list have the following properties
* units are provided by buildroot in the package directory
* the SYSTEMD_INSTALL_INIT_HOOK is exactly equivalent to what the
[Install] section of the unit does
The fix removes the soflinking in the .mk file
Signed-off-by: Jérémy Rosen <jeremy.rosen@smile.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Diffstat (limited to 'package/exim/exim.mk')
-rw-r--r-- | package/exim/exim.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/package/exim/exim.mk b/package/exim/exim.mk index 014565c85b..040b292a87 100644 --- a/package/exim/exim.mk +++ b/package/exim/exim.mk @@ -145,9 +145,6 @@ endef define EXIM_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 644 package/exim/exim.service \ $(TARGET_DIR)/usr/lib/systemd/system/exim.service - mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants - ln -sf ../../../../usr/lib/systemd/system/exim.service \ - $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/exim.service endef $(eval $(generic-package)) |