1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/devel/anjuta/files/patch-src_executer.c
Joe Marcus Clarke 6e3c9819b8 Teach anjuta about the new gnu-autotools ports, and fix some problems with
command escaping during project execution.
2004-10-17 06:44:54 +00:00

21 lines
501 B
C

--- src/executer.c.orig Tue Aug 31 00:40:58 2004
+++ src/executer.c Tue Aug 31 00:41:25 2004
@@ -154,7 +154,7 @@
if(e->terminal)
{
gchar* escaped_cmd;
- escaped_cmd = anjuta_util_escape_quotes(command);
+ escaped_cmd = command;
prop_set_with_key (e->props, "anjuta.current.command", escaped_cmd);
#ifdef DEBUG
@@ -162,7 +162,7 @@
#endif
cmd = command_editor_get_command (app->command_editor, COMMAND_TERMINAL);
- g_free(escaped_cmd);
+ /*g_free(escaped_cmd);*/
}
else
{