From 62951f13264d959b42838d8bdad9b027e8e20c04 Mon Sep 17 00:00:00 2001 From: Marko Saukko Date: Sun, 8 Apr 2012 13:57:10 +0300 Subject: [PATCH] [libzypp] Drop date and time from builds so that we don't cause more rebuilds. --- libzypp/zypp/ZConfig.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libzypp/zypp/ZConfig.cc b/libzypp/zypp/ZConfig.cc index 4103af5..cd79937 100644 --- a/libzypp/zypp/ZConfig.cc +++ b/libzypp/zypp/ZConfig.cc @@ -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() ) @@ -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 ) )