diff options
author | Brian Behlendorf <[email protected]> | 2019-08-22 17:31:38 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2019-08-22 17:31:38 -0700 |
commit | d1d1f8c37db83dc3f3ed6c571b644f2e400c6ee5 (patch) | |
tree | 69b22d40ef8411caa4e1c2d4032e4761bb413b3b /etc | |
parent | 97c54ea818ac60b914d1591e17ab175d89410b1b (diff) | |
parent | d1484fb1898043adc543f19d909c9f02d15b73f7 (diff) |
Fix install error introduced by #9089 (#9205)
Signed-off-by: Paul Dagnelie <[email protected]>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/systemd/system/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/systemd/system/Makefile.am b/etc/systemd/system/Makefile.am index ba73f558a..130c6c757 100644 --- a/etc/systemd/system/Makefile.am +++ b/etc/systemd/system/Makefile.am @@ -33,7 +33,7 @@ $(systemdunit_DATA) $(systemdpreset_DATA):%:%.in install-data-hook: $(MKDIR_P) "$(DESTDIR)$(systemdunitdir)" - ln -s /dev/null "$(DESTDIR)$(systemdunitdir)/zfs-import.service" + ln -sf /dev/null "$(DESTDIR)$(systemdunitdir)/zfs-import.service" distclean-local:: -$(RM) $(systemdunit_DATA) $(systemdpreset_DATA) |