signify aware

This commit is contained in:
Fredrik Rinnestam 2017-01-21 11:58:39 +01:00
parent 064dd912eb
commit b887129ff8
2 changed files with 7 additions and 1 deletions

View File

@ -219,7 +219,11 @@ bool ArgParser::parse()
m_pkgmkArgs += " " + s;
} else if ( s == "-um" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-kw" ) {
} else if ( s == "-is" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-us" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-kw" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-ns" ) {
m_pkgmkArgs += " " + s;

View File

@ -180,6 +180,8 @@ void PrtGet::printUsage()
cout << " -if ignore footprint" << endl;
cout << " -um update md5sum" << endl;
cout << " -im ignore md5sum" << endl;
cout << " -us update signature" << endl;
cout << " -is ignore signature" << endl;
cout << " --margs=<string> pass 'string' to pkgmk"
<< endl;
cout << " --aargs=<string> pass 'string' to pkgadd"