summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 16:05:52 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 16:05:52 +0800
commitb903d015d22099fb920ff2227dab7314a299f829 (patch)
tree26d111e7d4625fec37aa78ae8789444576b40ebf
parent7e42510e5ccca10248b4aa568be2f5cd0774292e (diff)
downloadatk-b903d015d22099fb920ff2227dab7314a299f829.tar.gz
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.
-rw-r--r--build/Makefile-newvs.am2
1 files changed, 1 insertions, 1 deletions
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/<VSVer>10<\/VSVer>/<VSVer>$(MSVC_VER)<\/VSVer>/g' > $(top_builddir)/build/win32/vs$(MSVC_VER)/$$F \
;; \
esac; \
done