3 Commits
v5.17 ... v5.18

Author SHA1 Message Date
Johannes Winkelmann
064dd912eb update to 5.18 2010-05-24 16:05:44 +02:00
Johannes Winkelmann
fb6dd8f99f fix printf when using regex 2010-05-24 16:04:54 +02:00
Johannes Winkelmann
f3fc62cda6 err, 5.17, not 5.177 :-) 2010-05-24 15:51:58 +02:00
3 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@@ -2167,7 +2167,7 @@ fi
# Define the identity of the package.
PACKAGE=prt-get
VERSION=5.177
VERSION=5.18
cat >>confdefs.h <<_ACEOF

View File

@@ -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

View File

@@ -1238,7 +1238,7 @@ void PrtGet::printf()
assertExactArgCount(1);
initRepo();
string filter = "*";
string filter = m_parser->useRegex() ? "." : "*";
if ( m_parser->hasFilter() ) {
filter = m_parser->filter();
}