diff options
author | rahulp13 | 2020-01-21 17:33:52 +0530 |
---|---|---|
committer | rahulp13 | 2020-01-21 17:33:52 +0530 |
commit | b1ccf66f234f4540d966732eb8e11e6ca26aa940 (patch) | |
tree | 8e4706f4a3a7c01b7d23a57de338c465c9935cfb /Debian/Ubuntu 14.04 | |
parent | a7087351504b4fa64a48eae1ee7be72301c7da63 (diff) | |
download | nghdl-b1ccf66f234f4540d966732eb8e11e6ca26aa940.tar.gz nghdl-b1ccf66f234f4540d966732eb8e11e6ca26aa940.tar.bz2 nghdl-b1ccf66f234f4540d966732eb8e11e6ca26aa940.zip |
update readme and xenial, bionic installers
Diffstat (limited to 'Debian/Ubuntu 14.04')
-rwxr-xr-x | Debian/Ubuntu 14.04/install-nghdl.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Debian/Ubuntu 14.04/install-nghdl.sh b/Debian/Ubuntu 14.04/install-nghdl.sh index 560b4df..905897f 100755 --- a/Debian/Ubuntu 14.04/install-nghdl.sh +++ b/Debian/Ubuntu 14.04/install-nghdl.sh @@ -81,6 +81,8 @@ function installDependency cd ghdl-0.36/ #Copy compiled ghdl to system path sudo cp bin/* /usr/local/bin/ + #Make it executable + sudo chmod 755 /usr/local/bin/ghdl* if [ $? -ne 0 ]; then echo "Unable to install ghdl-0.36 LLVM (@bin)" echo "Exiting installation..." @@ -158,6 +160,8 @@ function installNgspice echo "Remove earlier installations at /usr/bin/ngspice and try again..." exit 1 else + #Make it executable + sudo chmod 755 /usr/bin/ngspice echo "Added softlink for Ngspice" fi @@ -213,6 +217,8 @@ function createSoftLink echo "Remove earlier installations at /usr/local/bin/nghdl and try again..." exit 1 else + #Make it executable + sudo chmod 755 nghdl echo "Added softlink for NGHDL..............................." fi fi |