Skip to content
Snippets Groups Projects
Commit 090c1001 authored by Ivica Ico Bukvic's avatar Ivica Ico Bukvic
Browse files

improved installer, incorporated Gem as submodule

parent 618b90f1
No related branches found
No related tags found
No related merge requests found
......@@ -117,11 +117,20 @@ fi
if [ $full -gt 0 -o $deb -gt 0 ]
then
echo "Pd full installer..."
# update the include files to be safe
if [ ! -d "/usr/local/include/pdl2ork" ]; then
sudo mkdir /usr/local/include/pdl2ork
# check if Gem submodule is empty, and if so do first init
if [ "$(ls -A Gem)" ]; then
git submodule update
else
git submodule init
git submodule update
fi
# update the include files to be safe
#if [ ! -d "/usr/local/include/pdl2ork" ]; then
# sudo mkdir /usr/local/include/pdl2ork
#fi
#if [ $full -eq 3 ]
#then
# echo "IMPORTANT! If you are already running vanilla Pd or Pd-extended, or have a custom installation of Pd-l2ork at a location other than /usr/local/lib/pd-l2ork, you will want to EITHER uninstall all older versions of Pd-l2ork and/or other versions of pd OR manually pre-install Pd-l2ork includes in order to ensure that any third-party externals that rely on the global Pd-l2ork includes reference the right versions of the said files. Failing to do so may result in incorrectly compiled externals that will definitely crash Pd-l2ork. You can install the includes into their default dir /usr/local/include by typing following commands:"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment