[Abtlinux-svn] SF.net SVN: abtlinux: [389] src/trunk/abtlogmanager.rb
Status: Alpha
Brought to you by:
eschabell
From: <esc...@us...> - 2007-07-20 12:17:16
|
Revision: 389 http://svn.sourceforge.net/abtlinux/?rev=389&view=rev Author: eschabell Date: 2007-07-20 05:17:19 -0700 (Fri, 20 Jul 2007) Log Message: ----------- Cleaned up the formatting of the get_log code and added configure log to the list of logs that can be gotten. Modified Paths: -------------- src/trunk/abtlogmanager.rb Modified: src/trunk/abtlogmanager.rb =================================================================== --- src/trunk/abtlogmanager.rb 2007-07-20 12:15:15 UTC (rev 388) +++ src/trunk/abtlogmanager.rb 2007-07-20 12:17:19 UTC (rev 389) @@ -48,20 +48,20 @@ case type when 'install' - log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}" + - "/#{details['Source location']}.install" + log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}/#{details['Source location']}.install" when 'integrity' - log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}" + - "/#{details['Source location']}.integrity" + log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}/#{details['Source location']}.integrity" when 'tmpinstall' log = "#{$ABT_TMP}/#{details['Source location']}.watch" when 'build' - log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}" + - "/#{details['Source location']}.build" + log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}/#{details['Source location']}.build" + when 'configure' + log = "#{$PACKAGE_INSTALLED}/#{details['Source location']}/#{details['Source location']}.configure" + else log = "" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |