summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortjenssen <tim.jenssen@nokia.com>2012-03-12 22:34:41 +0100
committerTim Jenssen <tim.jenssen@nokia.com>2012-03-12 22:36:06 +0100
commit7ee725e09d64e5a8918363e06a5142f731616a7f (patch)
treea596619c322575c826ffc9f6a7cacaa8c2fd89e1
parent7c4eb3ae375c18263de34ee1ee3db960142325f2 (diff)
adding missing brackets
Change-Id: I10a806096a3b0b355909977058de0e53e21fbabf Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
-rw-r--r--installerbuilder/binarycreator/binarycreator.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/installerbuilder/binarycreator/binarycreator.cpp b/installerbuilder/binarycreator/binarycreator.cpp
index dacf601c2..fab3a207a 100644
--- a/installerbuilder/binarycreator/binarycreator.cpp
+++ b/installerbuilder/binarycreator/binarycreator.cpp
@@ -627,9 +627,10 @@ int main(int argc, char **argv)
if (!components.isEmpty()) {
std::cout << "Package names at the end of the command are deprecated"
" - please use --include or --exclude" << std::endl;
- if (nodeps)
+ if (nodeps) {
filteredPackages.append(components);
- ftype = Include;
+ ftype = Include;
+ }
}
if (target.isEmpty())