From a1f8c8ae873b41d539571caa945624947c81e5f6 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sun, 25 Oct 2015 09:44:01 +0800 Subject: [PATCH] Makefile: overwrite existent library for install target with 'ln -sf' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bed04589..3a97a6a1 100644 --- a/Makefile +++ b/Makefile @@ -266,7 +266,7 @@ ifeq ($(UNICORN_SHARED),yes) $(INSTALL_LIB) $(LIBRARY) $(LIBDIR) ifneq ($(VERSION_EXT),) cd $(LIBDIR) && \ - ln -s lib$(LIBNAME).$(VERSION_EXT) lib$(LIBNAME).$(EXT) + ln -sf lib$(LIBNAME).$(VERSION_EXT) lib$(LIBNAME).$(EXT) endif endif ifeq ($(UNICORN_STATIC),yes)