From fb85e97b9233cff352d964823173c18527c714aa Mon Sep 17 00:00:00 2001 From: Oran C Date: Wed, 22 Dec 2021 23:53:14 -0700 Subject: [PATCH] [fix] doc issue with order of install, and missing sudo --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f679839c..83f70e11 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ sudo apt-get install m4 sudo apt-get install tcsh sudo apt-get install csh sudo apt-get install libx11-dev +sudo apt-get install libcairo2-dev ``` # Install the recommended Tcl/Tk wrapper around magic (Version 8.5 or higher is highly recommended.) ```bash @@ -80,7 +81,7 @@ git clone https://github.com/RTimothyEdwards/magic.git cd magic ./configure make -make install +sudo make install ``` #### Note: Remember to use 'gmake' on FreeBSD. ---