I ran make install without installing all of the dependencies and src/version.tcl ended up empty, which caused flexprop to fail with Error in startup script: can't read "spin2gui_version": no such variable. To fix this I installed the missing package and then ran make clean and then make install again but since src/version.tcl wasn't removed make thought it was still up to date and didn't try to regenerate it. Deleting src/version.tcl and running make install with the proper dependencies installed worked.
I ran
make install
without installing all of the dependencies andsrc/version.tcl
ended up empty, which caused flexprop to fail withError in startup script: can't read "spin2gui_version": no such variable
. To fix this I installed the missing package and then ranmake clean
and thenmake install
again but sincesrc/version.tcl
wasn't removed make thought it was still up to date and didn't try to regenerate it. Deletingsrc/version.tcl
and runningmake install
with the proper dependencies installed worked.