2
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/mkproof synced 2024-05-28 05:36:12 +02:00

Merge pull request #281 from pmjdebruijn/master

Don't fail on existing symlink
This commit is contained in:
Dmitry Khovratovich 2020-04-06 16:54:41 +02:00 committed by GitHub
commit 288d50eaef
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -238,7 +238,7 @@ install: $(RUN) libs
$(INSTALL) -d $(INST_LIBRARY)
$(INSTALL) -m 0644 $(LIBRARIES) $(INST_LIBRARY)
ifdef LINKED_LIB_SH
cd $(INST_LIBRARY) && ln -s $(notdir $(LIB_SH) $(LINKED_LIB_SH))
cd $(INST_LIBRARY) && ln -sf $(notdir $(LIB_SH) $(LINKED_LIB_SH))
endif
$(INSTALL) -d $(INST_BINARY)
$(INSTALL) $(RUN) $(INST_BINARY)