mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-31 23:15:44 +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)
|
$(INSTALL_LIB) $(LIBRARY) $(LIBDIR)
|
||||||
ifneq ($(VERSION_EXT),)
|
ifneq ($(VERSION_EXT),)
|
||||||
cd $(LIBDIR) && \
|
cd $(LIBDIR) && \
|
||||||
ln -s lib$(LIBNAME).$(VERSION_EXT) lib$(LIBNAME).$(EXT)
|
ln -sf lib$(LIBNAME).$(VERSION_EXT) lib$(LIBNAME).$(EXT)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNICORN_STATIC),yes)
|
ifeq ($(UNICORN_STATIC),yes)
|
||||||
|
|
Loading…
Reference in a new issue