diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2011-08-19 15:07:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-23 18:23:16 -0700 |
commit | e83017fe9e1dc89860a43d41d0480d1371539e44 (patch) | |
tree | 7ac8bc4b80a5b36c534770d3c16ff3e46b2caee3 /scripts/combo-layer | |
parent | 4a2d3cfeeef4de6da1301c65033fa251538cddc9 (diff) | |
download | openembedded-core-e83017fe9e1dc89860a43d41d0480d1371539e44.tar.gz openembedded-core-e83017fe9e1dc89860a43d41d0480d1371539e44.tar.bz2 openembedded-core-e83017fe9e1dc89860a43d41d0480d1371539e44.zip |
scripts/combo-layer: fix configuration file handling
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'scripts/combo-layer')
-rwxr-xr-x | scripts/combo-layer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/combo-layer b/scripts/combo-layer index 07b3382f0a..f8763ee26a 100755 --- a/scripts/combo-layer +++ b/scripts/combo-layer @@ -339,8 +339,8 @@ Action: update get patches from component repos and apply them to the combo repo splitpatch [commit] generate commit patch and split per component, default commit is HEAD""") - parser.add_option("-c", "--conf", help = "specify the config file. default is conf/combolayer.conf", - action = "store", dest = "conffile", default = "combo-layer.conf") + parser.add_option("-c", "--conf", help = "specify the config file (conf/combo-layer.conf is the default).", + action = "store", dest = "conffile", default = "conf/combo-layer.conf") parser.add_option("-i", "--interactive", help = "interactive mode, user can edit the patch list and patches", action = "store_true", dest = "interactive", default = False) |