diff options
Diffstat (limited to 'lang/smalleiffel/patches/patch-ac')
-rw-r--r-- | lang/smalleiffel/patches/patch-ac | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lang/smalleiffel/patches/patch-ac b/lang/smalleiffel/patches/patch-ac new file mode 100644 index 00000000000..8f1c124f5fe --- /dev/null +++ b/lang/smalleiffel/patches/patch-ac @@ -0,0 +1,33 @@ +$NetBSD: patch-ac,v 1.4 2004/11/28 15:15:30 wiz Exp $ + +--- 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; + +@@ -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 |