From 633ae13c80d40b0f30db73e520c08cf365d2f8a3 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 5 Nov 2010 15:04:08 +0000 Subject: [PATCH] fish: More portable export sh statment. Don't depend on bash, but allow sh/dash/etc format: GUESTFISH_PID=nn; export GUESTFISH_PID (Thanks Eric Blake). --- fish/rc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/rc.c b/fish/rc.c index e637fc6..2d2f227 100644 --- a/fish/rc.c +++ b/fish/rc.c @@ -198,7 +198,7 @@ rc_listen (void) if (pid > 0) { /* Parent process. */ - printf ("export GUESTFISH_PID=%d\n", pid); + printf ("GUESTFISH_PID=%d; export GUESTFISH_PID\n", pid); fflush (stdout); _exit (0); } -- 1.8.3.1