mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-22 19:15:36 +00:00
Makefile: overwrite existent library for install target with 'ln -sf'
This commit is contained in:
parent
be36122d0c
commit
a1f8c8ae87
2
Makefile
2
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)
|
||||
|
|
Loading…
Reference in a new issue