projects/sencrypt
changeset 23:110b3a7a40c2
Fix typo in Makefile preventing installation
Fix a typo in the Makefile so that a symbolic link for the sdecrypt alias is
installed correctly.
Fix a typo in the Makefile so that a symbolic link for the sdecrypt alias is
installed correctly.
author | Guido Berhoerster <guido+sencrypt@berhoerster.name> |
---|---|
date | Mon Aug 19 13:15:02 2019 +0200 (2019-08-19) |
parents | 78a0d5b0d366 |
children | 865e886ec251 |
files | Makefile |
line diff
1.1 --- a/Makefile Mon Aug 05 11:20:01 2019 +0200 1.2 +++ b/Makefile Mon Aug 19 13:15:02 2019 +0200 1.3 @@ -123,7 +123,7 @@ 1.4 1.5 install: 1.6 $(INSTALL.exec) $(PACKAGE) "$(DESTDIR)$(bindir)/$(PACKAGE)" 1.7 - ln -f $(PACKAGE) "$(DESTDIR)$(bindir)/$(DECRYPT_ALIAS)" 1.8 + ln -sf $(PACKAGE) "$(DESTDIR)$(bindir)/$(DECRYPT_ALIAS)" 1.9 for manpage in $(MANPAGES); do \ 1.10 if [ -L $${manpage} ]; then \ 1.11 $(INSTALL.link) $${manpage} \