From: R Veera Kumar Date: Mon, 18 Oct 2021 08:49:19 +0000 (+0530) Subject: Add git-man/buster to git install and minor shell line fix X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d095e61ef7d27547433570ea43c593a511f52537;p=dev-env-setup.git Add git-man/buster to git install and minor shell line fix Added git-man/buster to git install line so that git successfully installs. A minor shell line fix. --- diff --git a/symbiflow-install b/symbiflow-install index 93c1f1a..71fc6ff 100755 --- a/symbiflow-install +++ b/symbiflow-install @@ -25,7 +25,7 @@ cd /home/$SUDO_USER mkdir -p src/symbiflow cd src/symbiflow -apt-get install -y libcurl3-gnutls/buster git/buster wget +apt-get install -y libcurl3-gnutls/buster git/buster git-man/buster wget git clone https://github.com/steveicarus/iverilog.git git clone https://github.com/YosysHQ/yosys.git @@ -149,7 +149,8 @@ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/symbiflow/vtr .. make -j $(nproc) make install install -v -d -m 0755 /usr/local/symbiflow/share/vtr -install -v -m 0644 ../libs/libvtrcapnproto/gen/rr_graph_uxsdcxx.capnp /usr/local/symbiflow/share/vtr +install -v -m 0644 ../libs/libvtrcapnproto/gen/rr_graph_uxsdcxx.capnp \ + /usr/local/symbiflow/share/vtr [ $TBB_VTR == 0 ] || [ $TBB_VTR == 2 ] && \ export PATH=/usr/local/symbiflow/vtr/bin:$PATH cd ../..