|
From: Thomas D. D. <to...@sp...> - 2017-06-25 23:21:39
|
On 06/25/2017 02:54 PM, Thomas D. Dean wrote: This is getting somewhat over my head. It looks like the script src/maxima is not made properly. When it is created within the source tree, it has top_srcdir pointing in the source tree. When it is created within the build tree, top_srcdir point in the build tree > diff maxima ../../maxima-build/src 10c10 < MAXIMA_VERSION="branch_5_40_base_83_ged20729" --- > MAXIMA_VERSION="5.40post" 15c15 < top_srcdir=`unixize "/home/tomdean/Math/Maxima/maxima-code"` --- > top_srcdir=`unixize "/home/tomdean/Math/Maxima/maxima-build"` To get to this point, > Rm -Rf maxima-code > git clone git://git.code.sf.net/p/maxima/code maxima-code > cd maxima-code/ > ./bootstrap > cd .. > rm -Rf maxima-build > mkdir maxima-build > cd maxima-build > ../maxima-code/configure --enable-gcl > make -d Leave the process hanging at the error so it does not clean up In another xterm, > cd maxima-code > ./configure --enable-gcl > make -d now, the difference in the src/maxima script can be seen. I believe the top_srcdir should be the same in both cases. Where is this script created? Tom Dean |