diff options
Diffstat (limited to 'lang/smalleiffel/patches/patch-ac')
-rw-r--r-- | lang/smalleiffel/patches/patch-ac | 42 |
1 files changed, 31 insertions, 11 deletions
diff --git a/lang/smalleiffel/patches/patch-ac b/lang/smalleiffel/patches/patch-ac index 4a632709656..20bbb951225 100644 --- a/lang/smalleiffel/patches/patch-ac +++ b/lang/smalleiffel/patches/patch-ac @@ -1,13 +1,33 @@ -$NetBSD: patch-ac,v 1.1 1999/10/13 19:03:39 jlam Exp $ +$NetBSD: patch-ac,v 1.2 2000/02/21 21:23:35 jlam Exp $ ---- lib_se/globals.e.orig Sat Jun 5 14:51:02 1999 -+++ lib_se/globals.e Wed Oct 13 06:13:22 1999 -@@ -460,7 +460,7 @@ - backup_suffix: STRING is ".bak"; - -- Backup suffix for command `pretty'. +--- lib_se/system_tools.e.orig Sat Feb 12 04:14:25 2000 ++++ lib_se/system_tools.e Mon Feb 21 13:55:26 2000 +@@ -207,6 +207,8 @@ + tmp_file_read.disconnect; + bin_directory := sys_directory.twin; + parent_directory(bin_directory); ++ parent_directory(bin_directory); ++ parent_directory(bin_directory); + add_directory(bin_directory,fz_bin); + end; -- help_suffix: STRING is ".txt"; -+ help_suffix: STRING is ".html"; - -- Suffix for SmallEiffel On-line Help Files. - - class_suffix: STRING is ".class"; +@@ -400,7 +402,8 @@ + echo.w_put_string("'.%N"); + tmp_path.copy(sys_directory); + parent_directory(tmp_path); +- add_directory(tmp_path,"man"); ++ parent_directory(tmp_path); ++ add_directory(tmp_path,fz_man); + tmp_path.append(command_name); + tmp_path.append(help_suffix); + echo.w_put_string("See documentation in file:%N "); +@@ -607,6 +610,9 @@ + else + Result := argi + 1; + end; ++ elseif arg.has_prefix("-Wl,") then ++ append_token(linker_options,arg) ++ Result := argi + 1; + elseif ("-subsystem").is_equal(arg) then + append_token(linker_options,arg); + if next_arg /= Void then |