Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path for tdom version 0.9.2 #9

Open
oupfiz5 opened this issue Feb 8, 2021 · 1 comment
Open

Fix path for tdom version 0.9.2 #9

oupfiz5 opened this issue Feb 8, 2021 · 1 comment

Comments

@oupfiz5
Copy link

oupfiz5 commented Feb 8, 2021

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
@gustafn
Copy link
Owner

gustafn commented Feb 8, 2021

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants