From c3f2260a7639fbcfe55cc83986b2cac8d153e73e Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Wed, 15 May 2024 19:43:09 -0400 Subject: [PATCH 1/2] Update application directory README file Remove mention of unused "encap" subdirectory, update webpage URL, and fix Mike's middle initial. --- M2/Macaulay2/m2/system.m2 | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/M2/Macaulay2/m2/system.m2 b/M2/Macaulay2/m2/system.m2 index 37e0eba1d5d..396088579fe 100644 --- a/M2/Macaulay2/m2/system.m2 +++ b/M2/Macaulay2/m2/system.m2 @@ -87,17 +87,15 @@ your "path", so Macaulay2's "load" and "input" commands will automatically look there for your files. You may obtain source code for Macaulay2 packages and install them yourself -with the function "installPackage". Behind the scenes, Macaulay2 will use the -subdirectory "encap/" to house the code for those packages in separate -subdirectories. The subdirectory "local/" will hold a single merged directory -tree for those packages, with symbolic links to the files of the packages. +with the function "installPackage". By default, these packages will be +installed to the "local/" subdirectory. Good luck! -http://www.math.uiuc.edu/Macaulay2/ +https://macaulay2.com/ Daniel R. Grayson , -Michael R. Stillman +Michael E. Stillman /// setUpApplicationDirectory = () -> ( From 53a74b4464d10c4a227efaa74244bd79be338baf Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Wed, 15 May 2024 19:44:04 -0400 Subject: [PATCH 2/2] Stop creating unused "encap" subdir of application directory --- M2/Macaulay2/m2/system.m2 | 1 - 1 file changed, 1 deletion(-) diff --git a/M2/Macaulay2/m2/system.m2 b/M2/Macaulay2/m2/system.m2 index 396088579fe..a911d0437ef 100644 --- a/M2/Macaulay2/m2/system.m2 +++ b/M2/Macaulay2/m2/system.m2 @@ -101,7 +101,6 @@ Michael E. Stillman setUpApplicationDirectory = () -> ( dir := applicationDirectory(); makeDirectory(dir); - makeDirectory(dir|"encap/"); makeDirectory(dir|"local/"); makeDirectory(dir|"code/"); f := (n,c) -> (n = dir|n; if not fileExists n then n << c << close);