From 0866cc6f26c269ae7203b94785e0c7b6b554b20b Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 17 Oct 2012 10:14:51 +0200 Subject: [PATCH] QtcPlugin.qbs: use the right name binding in Group We're going to add the property Group.name in qbs. Consequently, Groups must use product.name when accessing the name of the product. Change-Id: Id2527300a8a7c26bb742d4111f9d47ded6c492b1 Reviewed-by: Orgad Shaneh Reviewed-by: Christian Kandeler --- src/plugins/QtcPlugin.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/QtcPlugin.qbs b/src/plugins/QtcPlugin.qbs index e1eaff2ca6c..8ed4ce13c08 100644 --- a/src/plugins/QtcPlugin.qbs +++ b/src/plugins/QtcPlugin.qbs @@ -29,7 +29,7 @@ Product { } Group { - files: [ name + ".pluginspec.in" ] + files: [ product.name + ".pluginspec.in" ] fileTags: ["pluginSpecIn"] } }