summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 16:04:51 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 16:04:51 +0800
commitfe66e7b36331d031f1025dbe05db065334381fee (patch)
tree6e2560302b27c9a87e5419df7d32f5915b17fa0c /build
parente895f9e56353448842c333a37a3f92f9b58e79f0 (diff)
downloadpango-fe66e7b36331d031f1025dbe05db065334381fee.tar.gz
MSVC 2012/2013 Support: Update Property Sheet Creation
Be a bit more carful 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.
Diffstat (limited to 'build')
-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 04d2405c..e63b15f7 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