mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 01:17:11 +02:00
fixed run and wait script
git-svn-id: trunk@3936 -
This commit is contained in:
parent
051346eea3
commit
fcce0f3ad8
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -822,7 +822,6 @@ packager/ucomponentmanmain.pas svneol=native#text/pascal
|
||||
packager/ufrmaddcomponent.lfm svneol=native#text/plain
|
||||
packager/ufrmaddcomponent.lrs svneol=native#text/pascal
|
||||
packager/ufrmaddcomponent.pas svneol=native#text/pascal
|
||||
tools/RunAndWait.sh -text svneol=native#application/x-sh
|
||||
tools/apiwizz/apiwizard.pp svneol=native#text/pascal
|
||||
tools/apiwizz/apiwizz.pp svneol=native#text/pascal
|
||||
tools/install/create_fpc_export_tgz.sh -text svneol=native#application/x-sh
|
||||
|
@ -2382,7 +2382,8 @@ begin
|
||||
+';'+Dir+'rtl'+DS+'objpas'+DS
|
||||
+';'+Dir+'rtl'+DS+'inc'+DS
|
||||
+';'+Dir+'rtl'+DS+TargetProcessor+DS
|
||||
+';'+Dir+'rtl'+DS+SrcOS+DS;
|
||||
+';'+Dir+'rtl'+DS+SrcOS+DS
|
||||
+';'+Dir+'rtl'+DS+SrcOS+DS+TargetProcessor+DS;
|
||||
if (TargetOS<>'') and (TargetOS<>SrcOS) then
|
||||
s:=s+';'+Dir+'rtl'+DS+TargetOS+DS;
|
||||
RTLDir.AddChild(TDefineTemplate.Create('Include Path',
|
||||
|
@ -171,7 +171,7 @@ implementation
|
||||
const
|
||||
DefaultLauncherApplication =
|
||||
'/usr/X11R6/bin/xterm -T ''Lazarus Run Output'''
|
||||
+' -e $(LazarusDir)/tools/RunAndWait.sh $(TargetCmdLine)';
|
||||
+' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)';
|
||||
|
||||
function ShowRunParamsOptsDlg(RunParamsOptions: TRunParamsOptions):TModalResult;
|
||||
var
|
||||
@ -457,7 +457,7 @@ begin
|
||||
Items.Add(DefaultLauncherApplication);
|
||||
{$IFNDEF win32}
|
||||
Items.Add('/usr/bin/gnome-terminal -t ''Lazarus Run Output'''
|
||||
+' -e ''$(LazarusDir)/tools/RunAndWait.sh $(TargetCmdLine)''');
|
||||
+' -e ''$(LazarusDir)/tools/runwait.sh $(TargetCmdLine)''');
|
||||
{$ENDIF}
|
||||
EndUpdate;
|
||||
end;
|
||||
|
@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
CommandLine=$@
|
||||
#set -x
|
||||
|
||||
echo $CommandLine
|
||||
$CommandLine
|
||||
echo "--------------------------------------------------"
|
||||
echo "Press enter"
|
||||
read
|
||||
|
||||
# end.
|
Loading…
Reference in New Issue
Block a user