From 987cf14542c4b96eea3224047fa3ddb10b76e67f Mon Sep 17 00:00:00 2001 From: Jim Monte Date: Mon, 9 Dec 2019 18:57:52 -0500 Subject: [PATCH] Fixed some comments that appear to have been missed when compile_min.sh was used to create compile_linux.sh --- compile_linux.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/compile_linux.sh b/compile_linux.sh index 84fc33f88..ffa32a27b 100644 --- a/compile_linux.sh +++ b/compile_linux.sh @@ -6,7 +6,7 @@ # Install gcc, bison, flex, libtool, autoconf, automake, # libx11 and libx11-dev (headers), libXaw and libXaw-dev, libreadline and dev # Declare 'compile_linux.sh' executable and start compiling with -# './compile_linux.sh' or './compile_min.sh 64' from the ngspice directory. +# './compile_linux.sh' or './compile_linux.sh 64' from the ngspice directory. # Options: # --adms and --enable-adms will install extra HICUM, EKV and MEXTRAM models via the # adms interface. You need to download and install the *.va files via ng-adms-va.tgz @@ -69,8 +69,7 @@ echo "compiling (see make.log)" make 2>&1 -j8 | tee make.log exitcode=${PIPESTATUS[0]} if [ $exitcode -ne 0 ]; then echo "make failed"; exit 1 ; fi -# 32 bit: Install to C:\Spice -# 64 bit: Install to C:\Spice64 +# Install to /usr/local echo "installing (see make_install.log)" make install 2>&1 | tee make_install.log exitcode=${PIPESTATUS[0]}