Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b887129ff8 | ||
|
|
064dd912eb | ||
|
|
fb6dd8f99f | ||
|
|
f3fc62cda6 |
2
configure
vendored
2
configure
vendored
@@ -2167,7 +2167,7 @@ fi
|
||||
|
||||
# Define the identity of the package.
|
||||
PACKAGE=prt-get
|
||||
VERSION=5.177
|
||||
VERSION=5.18
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
AC_INIT
|
||||
AC_CONFIG_SRCDIR([src/prtget.cpp])
|
||||
AM_INIT_AUTOMAKE(prt-get,5.177)
|
||||
AM_INIT_AUTOMAKE(prt-get,5.18)
|
||||
|
||||
|
||||
dnl Determine default prefix
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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"
|
||||
@@ -1238,7 +1240,7 @@ void PrtGet::printf()
|
||||
assertExactArgCount(1);
|
||||
|
||||
initRepo();
|
||||
string filter = "*";
|
||||
string filter = m_parser->useRegex() ? "." : "*";
|
||||
if ( m_parser->hasFilter() ) {
|
||||
filter = m_parser->filter();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user