public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: rmoseley@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: Fix problem created with TestSysRoot.
Date: Fri, 18 Apr 2008 17:40:00 -0000	[thread overview]
Message-ID: <20080418174038.10650.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  48a7edfa2a0699f311d3a16d174b3338ad87f4d6 (commit)
      from  6fb55aebf463508ccb51e4eca557acad94e1fe4e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 48a7edfa2a0699f311d3a16d174b3338ad87f4d6
Author: Rick Moseley <rmoseley@localhost.localdomain>
Date:   Fri Apr 18 12:39:37 2008 -0500

    Fix problem created with TestSysRoot.
    
    * StartRun.java: Fix bug in TestSysRoot introduced by
      yesterday's changes.

-----------------------------------------------------------------------

Summary of changes:
 frysk-core/frysk/hpd/ChangeLog     |    5 +++++
 frysk-core/frysk/hpd/StartRun.java |    8 +++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/hpd/ChangeLog b/frysk-core/frysk/hpd/ChangeLog
index c133bcc..aca7b70 100644
--- a/frysk-core/frysk/hpd/ChangeLog
+++ b/frysk-core/frysk/hpd/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-18  Rick Moseley  <rmoseley@redhat.com>
+
+	* StartRun.java: Fix bug in TestSysRoot introduced by
+	yesterday's changes.
+
 2008-04-17  Rick Moseley  <rmoseley@redhat.com>
 
 	* StartRun.java: Add args to multiple runs for start/run
diff --git a/frysk-core/frysk/hpd/StartRun.java b/frysk-core/frysk/hpd/StartRun.java
index c5855a2..0fd6eac 100644
--- a/frysk-core/frysk/hpd/StartRun.java
+++ b/frysk-core/frysk/hpd/StartRun.java
@@ -132,7 +132,6 @@ abstract class StartRun extends ParameterizedCommand {
     
     public void interpretCmd(CLI cli, Input cmd, Object options,
 			     boolean runToBreak) {
-	
 	userSet = cli.getCommandPTSet(cmd);
 	// See if there are any tasks to be killed
 	if (killProcs(cli)) {
@@ -256,9 +255,12 @@ abstract class StartRun extends ParameterizedCommand {
 	    }
 	    else {
 		String[] temp = new String[1];
-		temp [0] = argList[0];
+		if (command != "" || command != null) 
+		    temp[0] = command;
+		else
+		    temp [0] = argList[0];
 		cli.addMessage(startrun + " with this commmand: " + 
-			   asString("", temp, cmd), Message.TYPE_NORMAL);
+			   asString(command, temp, cmd), Message.TYPE_NORMAL);
 		Manager.host.requestCreateAttachedProc(createArgList(null, temp), runner);
 	    }
 	    break;


hooks/post-receive
--
frysk system monitor/debugger


                 reply	other threads:[~2008-04-18 17:40 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080418174038.10650.qmail@sourceware.org \
    --to=rmoseley@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).