From: dtrg Date: Sun, 25 Feb 2007 20:59:21 +0000 (+0000) Subject: Replaced the call to posix.setenv() with the more portable X-Git-Tag: release-6-0-pre-1~3 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=17b0c36f69b42280597f8337188224cad4474025;p=ack.git Replaced the call to posix.setenv() with the more portable posix.putenv(). --- diff --git a/pmfile b/pmfile index db9113246..5e9c79cd1 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.