mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
de618f3385
- fix HOMEPAGE and SITES based on issues/4570 (from Yury V. Zaytsev) - drop ksh patches which are now upstreamed
13 lines
566 B
Plaintext
13 lines
566 B
Plaintext
Index: src/diffviewer/ydiff.c
|
|
--- src/diffviewer/ydiff.c.orig
|
|
+++ src/diffviewer/ydiff.c
|
|
@@ -821,7 +821,7 @@ dff_execute (const char *args, const char *extra, cons
|
|
/* escape potential $ to avoid shell variable substitutions in popen() */
|
|
file1_esc = str_shell_escape (file1);
|
|
file2_esc = str_shell_escape (file2);
|
|
- cmd = g_strdup_printf ("diff %s %s %s %s %s", args, extra, opt, file1_esc, file2_esc);
|
|
+ cmd = g_strdup_printf ("gdiff %s %s %s %s %s", args, extra, opt, file1_esc, file2_esc);
|
|
g_free (file1_esc);
|
|
g_free (file2_esc);
|
|
|