From 0fabb4cd621c18ce77a79953433f5edabb2251e9 Mon Sep 17 00:00:00 2001 From: Ali Erdem <56692909+Arsivnet@users.noreply.github.com> Date: Thu, 8 Jul 2021 16:26:17 +0000 Subject: [PATCH 1/2] Update README.md Previous profiles like "stable" and "all" don't even exist on monodevelop/profiles/ --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 127f8e74444..8c0cacd3732 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,8 @@ There are two variables you can set when running `configure`: * The build profile: `--profile=profile-name` - * `stable`: builds the MonoDevelop core and some stable extra add-ins. - * `core`: builds the MonoDevelop core only. - * `all`: builds everything + * `gnome`: builds for Linux + * `windows`: builds for Windows * `mac`: builds for Mac OS X **PS:** You can also create your own profile by adding a file to the profiles directory containing a list of the directories to build. From e26a5123a899748a0029707c19ef1d905bcbccc7 Mon Sep 17 00:00:00 2001 From: Ali Erdem <56692909+Arsivnet@users.noreply.github.com> Date: Thu, 8 Jul 2021 17:05:16 +0000 Subject: [PATCH 2/2] Update README.md Prefix comand was missing $() --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c0cacd3732..b620ed0e665 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ There are two variables you can set when running `configure`: * The install prefix: `--prefix=/path/to/prefix` * To install with the rest of the assemblies, use: - `--prefix="pkg-config --variable=prefix mono"` + `--prefix="$(pkg-config --variable=prefix mono)"` * The build profile: `--profile=profile-name`