diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-05-19 21:31:52 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-05-19 21:31:52 +0000 |
commit | 0eda2536298774fdd4c670a2385657f23c761138 (patch) | |
tree | a7fa3b1fde1381849c734701031a6b8cf19660d5 /lang/gambas/files/patch-app::gambas::FPropertyProject.class | |
parent | - Update to version 0.7.2 (diff) |
Upgrade to 0.93a.
Warning: the installation directories have changed.
Notes
Notes:
svn path=/head/; revision=109537
Diffstat (limited to 'lang/gambas/files/patch-app::gambas::FPropertyProject.class')
-rw-r--r-- | lang/gambas/files/patch-app::gambas::FPropertyProject.class | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/lang/gambas/files/patch-app::gambas::FPropertyProject.class b/lang/gambas/files/patch-app::gambas::FPropertyProject.class index 9c01b66f78bb..87eaf9661e6a 100644 --- a/lang/gambas/files/patch-app::gambas::FPropertyProject.class +++ b/lang/gambas/files/patch-app::gambas::FPropertyProject.class @@ -1,20 +1,20 @@ ---- app/gambas/FPropertyProject.class.orig Sat Jan 24 01:36:08 2004 -+++ app/gambas/FPropertyProject.class Wed Jan 28 21:09:18 2004 -@@ -497,7 +497,7 @@ - $sTemp = Temp$ - - SHELL "(cd " & Project.Quote(Project.Dir) & "; wc -l *.module *.class *.form 2> /dev/null | tail -n1 > " & $sTemp & -- "; du -b | tail -n1 >> " & $sTemp & ")" AS $hProcess -+ "; du -k | tail -n1 >> " & $sTemp & ")" AS $hProcess - - END +--- ./app/gambas/FPropertyProject.class.orig Sun May 16 22:25:08 2004 ++++ ./app/gambas/FPropertyProject.class Tue May 18 23:44:31 2004 +@@ -507,7 +507,7 @@ + ' $sTemp = Temp$ + ' + ' SHELL "(cd " & Project.Quote(Project.Dir) & "; wc -l *.module *.class *.form 2> /dev/null | tail -n1 > " & $sTemp & +-' "; du -b | tail -n1 >> " & $sTemp & ")" AS $hProcess ++' "; du -k | tail -n1 >> " & $sTemp & ")" AS $hProcess + ' + ' END -@@ -552,7 +552,7 @@ - ' TRY nLine = Val(File.Load(sTemp)) - ' TRY KILL sTemp +@@ -562,7 +562,7 @@ + ' ' TRY nLine = Val(File.Load(sTemp)) + ' ' TRY KILL sTemp + ' ' +-' ' SHELL "(cd " & Project.Quote(Project.Dir) & "; du -b | tail -n1 > " & sTemp & ")" WAIT ++' ' SHELL "(cd " & Project.Quote(Project.Dir) & "; du -k | tail -n1 > " & sTemp & ")" WAIT + ' ' TRY iSize = Val(File.Load(sTemp)) + ' ' TRY KILL sTemp ' --' SHELL "(cd " & Project.Quote(Project.Dir) & "; du -b | tail -n1 > " & sTemp & ")" WAIT -+' SHELL "(cd " & Project.Quote(Project.Dir) & "; du -k | tail -n1 > " & sTemp & ")" WAIT - ' TRY iSize = Val(File.Load(sTemp)) - ' TRY KILL sTemp - |