comparison Makefile @ 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.
author Guido Berhoerster <guido+sencrypt@berhoerster.name>
date Mon, 19 Aug 2019 13:15:02 +0200
parents 5f9dc8f3c53e
children 865e886ec251
comparison
equal deleted inserted replaced
22:78a0d5b0d366 23:110b3a7a40c2
121 $(MAKEDEPEND.c) $< | $(SED) -f deps.sed >$*.d 121 $(MAKEDEPEND.c) $< | $(SED) -f deps.sed >$*.d
122 $(COMPILE.c) -o $@ $< 122 $(COMPILE.c) -o $@ $<
123 123
124 install: 124 install:
125 $(INSTALL.exec) $(PACKAGE) "$(DESTDIR)$(bindir)/$(PACKAGE)" 125 $(INSTALL.exec) $(PACKAGE) "$(DESTDIR)$(bindir)/$(PACKAGE)"
126 ln -f $(PACKAGE) "$(DESTDIR)$(bindir)/$(DECRYPT_ALIAS)" 126 ln -sf $(PACKAGE) "$(DESTDIR)$(bindir)/$(DECRYPT_ALIAS)"
127 for manpage in $(MANPAGES); do \ 127 for manpage in $(MANPAGES); do \
128 if [ -L $${manpage} ]; then \ 128 if [ -L $${manpage} ]; then \
129 $(INSTALL.link) $${manpage} \ 129 $(INSTALL.link) $${manpage} \
130 "$(DESTDIR)$(mandir)/man$${manpage##*.}/$${manpage##*/}"; \ 130 "$(DESTDIR)$(mandir)/man$${manpage##*.}/$${manpage##*/}"; \
131 else \ 131 else \