aboutsummaryrefslogtreecommitdiff
path: root/build/meta/vcsln
diff options
context:
space:
mode:
Diffstat (limited to 'build/meta/vcsln')
-rwxr-xr-xbuild/meta/vcsln6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/meta/vcsln b/build/meta/vcsln
index 46b1943..3b58311 100755
--- a/build/meta/vcsln
+++ b/build/meta/vcsln
@@ -11,7 +11,7 @@
# -b <base-dir>
# -o <output-file>
# -e <project-ext>
-# -v <vc-version> {9, 10}
+# -v <vc-version> {8, 9, 10, 11}
#
# Arguments:
#
@@ -133,7 +133,7 @@ proj_uuids=
for f in $proj_files; do
if [ "$conf" = "" ]; then
- if [ "$vcver" = "9" ]; then
+ if [ "$vcver" = "8" -o "$vcver" = "9" ]; then
conf=`cat $f | fromdos | sed -n -e \
'/^[ ]*<Configuration$/{n;s/[ ]*Name="\([^"]*\)"$/"\1",/p};d' -`
conf=`echo $conf | sed -e 's/,$//'`
@@ -144,7 +144,7 @@ for f in $proj_files; do
fi
fi
- if [ "$vcver" = "9" ]; then
+ if [ "$vcver" = "8" -o "$vcver" = "9" ]; then
uuid=`cat $f | fromdos | sed -n -e \
's/^[ ]*ProjectGUID="{\([^}]*\)}"$/\1/p;d'`
else