From: Chun-wei Fan Date: Tue, 1 Jul 2014 08:08:21 +0000 (+0800) Subject: MSVC 2012/2013 Support: Update Property Sheet Creation X-Git-Tag: 2.41.2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=98d37f203e1f60f45a761f3be74a5e6864f5d9d6;p=platform%2Fupstream%2Fglib.git MSVC 2012/2013 Support: Update Property Sheet Creation Be a bit more careful when copying and updating the property sheets, so that we don't accidently change fields with '10' in them that are actually not indicating the Visual Studio version. --- diff --git a/build/Makefile-newvs.am b/build/Makefile-newvs.am index 04d2405..e63b15f 100644 --- a/build/Makefile-newvs.am +++ b/build/Makefile-newvs.am @@ -26,7 +26,7 @@ create_vcxproj: create_props: for F in `(cd $(top_builddir)/build/win32/vs10 && ls *.props)`; do \ case $$F in \ - *) cat $(top_builddir)/build/win32/vs10/$$F | sed 's/10/$(MSVC_VER)/g' > $(top_builddir)/build/win32/vs$(MSVC_VER)/$$F \ + *) cat $(top_builddir)/build/win32/vs10/$$F | sed 's/10<\/VSVer>/$(MSVC_VER)<\/VSVer>/g' > $(top_builddir)/build/win32/vs$(MSVC_VER)/$$F \ ;; \ esac; \ done