From 696e72709e6d98fbbac0b9d4586721585fca758a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 3 Jan 2006 14:50:39 +0000 Subject: [PATCH] The debug_server now uses the standard terminal for debugging - we no longer need MiniTerminal, it's no longer included in the image. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15822 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/jam/HaikuImage | 2 +- src/servers/debug/DebugServer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/jam/HaikuImage b/build/jam/HaikuImage index 01c10cdf37..bf9f4aafc3 100644 --- a/build/jam/HaikuImage +++ b/build/jam/HaikuImage @@ -15,7 +15,7 @@ BEOS_BIN = addattr alert arp basename beep cat catattr chgrp chmod chown clockco uptime version waitfor xargs xres zip ; -BEOS_APPS = MiniTerminal Terminal Expander People ShowImage Clock Pulse +BEOS_APPS = Terminal Expander People ShowImage Clock Pulse Playground SoundRecorder BitmapDrawing Magnify DiskProbe AboutHaiku StyledEdit Chart ; diff --git a/src/servers/debug/DebugServer.cpp b/src/servers/debug/DebugServer.cpp index b6357099ed..06161bc0df 100644 --- a/src/servers/debug/DebugServer.cpp +++ b/src/servers/debug/DebugServer.cpp @@ -39,7 +39,7 @@ static const char *kSignature = "application/x-vnd.haiku-debug-server"; // paths to the apps used for debugging static const char *kConsoledPath = "/bin/consoled"; -static const char *kTerminalPath = "/boot/beos/apps/MiniTerminal"; +static const char *kTerminalPath = "/boot/beos/apps/Terminal"; static const char *kGDBPath = "/bin/gdb";