0001-libargon2-dont-fail-on-existing-symlink.patch 774 B

1234567891011121314151617181920212223
  1. From b997b9e7d4744020409223afddc7299a771eb52d Mon Sep 17 00:00:00 2001
  2. From: Pascal de Bruijn <pmjdebruijn@pcode.nl>
  3. Date: Thu, 7 Nov 2019 09:55:32 +0100
  4. Subject: [PATCH] Don't fail on existing symlink
  5. Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl>
  6. ---
  7. Makefile | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/Makefile b/Makefile
  10. index 837e7f7..7c116c9 100644
  11. --- a/Makefile
  12. +++ b/Makefile
  13. @@ -238,7 +238,7 @@ install: $(RUN) libs
  14. $(INSTALL) -d $(INST_LIBRARY)
  15. $(INSTALL) -m 0644 $(LIBRARIES) $(INST_LIBRARY)
  16. ifdef LINKED_LIB_SH
  17. - cd $(INST_LIBRARY) && ln -s $(notdir $(LIB_SH) $(LINKED_LIB_SH))
  18. + cd $(INST_LIBRARY) && ln -sf $(notdir $(LIB_SH) $(LINKED_LIB_SH))
  19. endif
  20. $(INSTALL) -d $(INST_BINARY)
  21. $(INSTALL) $(RUN) $(INST_BINARY)