Add reference to the relevant issue in debian mailing list.

This commit is contained in:
Gregory John Casamento 2021-08-17 09:43:58 -04:00
parent 0f4d669dbe
commit 50fde455c5

View file

@ -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];