freebsd-ports/graphics/gimp-devel/files/patch-ab
Vanilla I. Shu ac0d56a7c6 1. Upgrade to 1.0.0.
2. Portlint.
PR:	ports/6878
Submitted by:	Brett Taylor <brett@peloton.physics.montana.edu>
1998-06-07 03:58:40 +00:00

13 lines
463 B
Text

--- plug-ins/url/url.c.orig Sat May 30 15:32:36 1998
+++ plug-ins/url/url.c Sun Jun 7 10:09:34 1998
@@ -146,8 +146,8 @@
}
else if (pid == 0)
{
- execlp ("wget", "wget", filename, "-O", tmpname, NULL);
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
_exit(127);
}
else