From 583c2df92abbf3a6de9d3294d389aaf1c24b1411 Mon Sep 17 00:00:00 2001 From: dtrg Date: Sun, 25 Feb 2007 20:59:21 +0000 Subject: [PATCH] Replaced the call to posix.setenv() with the more portable posix.putenv(). --- pmfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmfile b/pmfile index db911324..5e9c79cd 100644 --- a/pmfile +++ b/pmfile @@ -185,7 +185,7 @@ posix.mkdir(HEADERDIR) -- area for its files, and not in the final installation directory (because -- we haven't been installed yet). -posix.setenv("ACKDIR", BINDIR) +posix.putenv("ACKDIR="..BINDIR) -- Build the configuration headers, rather crudely. FIXME.