From 50fde455c501fdd0e1c73d4168c10ed2f1e1220a Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Tue, 17 Aug 2021 09:43:58 -0400 Subject: [PATCH] Add reference to the relevant issue in debian mailing list. --- Framework/PCProjectBuilder.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Framework/PCProjectBuilder.m b/Framework/PCProjectBuilder.m index 7ed9390..fafa939 100644 --- a/Framework/PCProjectBuilder.m +++ b/Framework/PCProjectBuilder.m @@ -603,9 +603,13 @@ * with GNUSTEP_USER_ROOT. This causes any app which might use the make command to fail since * in gnustep-make this variable is deprecated. This issue exists with version of WindowMaker * 0.95.8 and prior. WindowMaker 0.95.9 fixes this by using WMAKER_USER_ROOT instead. + * + * https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1664042.html + * the above is a link to the root cause of this issue. */ [env addEntriesFromDictionary: [[NSProcessInfo processInfo] environment]]; [env removeObjectForKey: @"GNUSTEP_USER_ROOT"]; + // This should be removed once use of 0.95.9 is common.. makeTask = [[NSTask alloc] init]; [makeTask setEnvironment: env];