Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[libzypp] Drop date and time from builds so that we don't cause more …
…rebuilds.
  • Loading branch information
saukko authored and kaltsi committed Nov 6, 2013
1 parent 2cb9ee3 commit 62951f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libzypp/zypp/ZConfig.cc
Expand Up @@ -293,7 +293,7 @@ namespace zypp
, apply_locks_file ( true )
, pluginsPath ( "/usr/lib/zypp/plugins" )
{
MIL << "libzypp: " << VERSION << " built " << __DATE__ << " " << __TIME__ << endl;
MIL << "libzypp: " << VERSION << " built in OBS, see rpm -q --info libzypp for more information" << endl;
// override_r has higest prio
// ZYPP_CONF might override /etc/zypp/zypp.conf
if ( _parsedZyppConf.empty() )
Expand Down Expand Up @@ -901,7 +901,7 @@ namespace zypp

std::ostream & ZConfig::about( std::ostream & str ) const
{
str << "libzypp: " << VERSION << " built " << __DATE__ << " " << __TIME__ << endl;
str << "libzypp: " << VERSION << " built in OBS, see rpm -q --info libzypp for more information" << endl;

str << "libsolv: " << solv_version;
if ( ::strcmp( solv_version, LIBSOLV_VERSION_STRING ) )
Expand Down

0 comments on commit 62951f1

Please sign in to comment.