# HG changeset patch # User Mike Kinghan # Date 1280932886 -3600 # Node ID 285922d13199c1fb256228a82ef2d380dc567e7b # Parent c5cd29a4600d5c00a4075546875a7d0e54d9f5a6 Correction for the fix for Bug 3508 - Persistent storage support breaks Linux compatibility. A 2nd `make install' will fail attempting to create symlink libnvmemmory.so already created by 1st install. Install should pre-emptively delete it. diff -r c5cd29a4600d -r 285922d13199 symbian-qemu-0.9.1-12/model-libraries/nvmemmory/target.mak --- a/symbian-qemu-0.9.1-12/model-libraries/nvmemmory/target.mak Wed Aug 04 11:52:10 2010 +0100 +++ b/symbian-qemu-0.9.1-12/model-libraries/nvmemmory/target.mak Wed Aug 04 15:41:26 2010 +0100 @@ -46,6 +46,7 @@ install: $(targ) if [ ! -d "$(DESTDIR)$(libdir)" ]; then mkdir -p "$(DESTDIR)$(libdir)"; fi && \ $(INSTALL) -m 755 $(targ) "$(DESTDIR)$(libdir)" && \ + rm -f "$(DESTDIR)$(libdir)/$(libname)" && \ ln -s "$(DESTDIR)$(libdir)/$(targ)" "$(DESTDIR)$(libdir)/$(libname)" distclean: clean