You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tdom version 0.9.2. after unpacking has path ${tdom_base}-src. The script install-ns.sh is using path ${tdom_base}. As variant I propose applying the following changes (from line number 762):
#${tar} xfz tDOM-${version_tdom}.tgz
- cd ${tdom_base}/unix
+ # if tdom version 0.9.2 path is ${tdom_base}-src
+ if [ -d "${tdom_base}-src" ] ; then
+ cd ${tdom_base}-src/unix
+ else
+ cd ${tdom_base}/unix
+ fi
The text was updated successfully, but these errors were encountered:
tDOM 0.9.2 has some issues (when used e.g. with OpenACS). Rolf is informed about this, hopefully, this is fixed soon. Until then, i leave the Ticket open.
The tdom version 0.9.2. after unpacking has path
${tdom_base}-src
. The scriptinstall-ns.sh
is using path${tdom_base}
. As variant I propose applying the following changes (from line number 762):The text was updated successfully, but these errors were encountered: