gdb: fix path to ex
authortb <tb@openbsd.org>
Fri, 20 Sep 2024 11:41:15 +0000 (11:41 +0000)
committertb <tb@openbsd.org>
Fri, 20 Sep 2024 11:41:15 +0000 (11:41 +0000)
from Nir Lichtman
ok pascal sthen
(they okayed the ports version which I take to be an agreement with this).

gnu/usr.bin/binutils/gdb/cli/cli-cmds.c
gnu/usr.bin/binutils/gdb/doc/gdb.texinfo

index fbe93c9..40ff739 100644 (file)
@@ -625,7 +625,7 @@ edit_command (char *arg, int from_tty)
     }
 
   if ((editor = (char *) getenv ("EDITOR")) == NULL)
-      editor = "/bin/ex";
+      editor = "/usr/bin/ex";
   
   /* Approximate base-10 log of line to 1 unit for digit count */
   for(log10=32, m=0x80000000; !(sal.line & m) && log10>0; log10--, m=m>>1);
index 6af8d37..3de22cb 100644 (file)
@@ -32,7 +32,7 @@
 @set EDITION Ninth
 
 @c !!set GDB edit command default editor
-@set EDITOR /bin/ex
+@set EDITOR /usr/bin/ex
 
 @c THIS MANUAL REQUIRES TEXINFO 4.0 OR LATER.