From a156dc14434060c0896f30825d01bc3e84e1bf71 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 14 May 2017 20:31:25 -0500 Subject: [PATCH] Change initenv call to environInit. This was renamed when libenviron was incorporated into libc. --- dmake/unix/gno/dmake.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmake/unix/gno/dmake.c b/dmake/unix/gno/dmake.c index 58833c6..92f9183 100644 --- a/dmake/unix/gno/dmake.c +++ b/dmake/unix/gno/dmake.c @@ -178,7 +178,7 @@ main(int argc, char **argv) if (getenv("NOPURGE")==NULL) system("purge >.null"); /* initialize environment */ - if (initenv() !=0) { + if (environInit() !=0) { fprintf(stderr,"Failed to initialize environment. dmake aborted.\n\n"); exit (-1); }