Skip to content
Snippets Groups Projects
Commit 9cd55f45 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

MNT: ability to add directories to TCLFILES

parent 202d87d7
No related branches found
No related tags found
No related merge requests found
......@@ -66,9 +66,12 @@ tclinstall:
for tclfile in ${TCLFILES} verylongdummyname ; do \
if [ -f $$tclfile ] ; then \
install_yn=yes; \
${INSTALL} -m 0775 $$tclfile ${dest_TCLDIR}/ ; \
echo ${INSTALL} -m 0775 $$tclfile ${dest_TCLDIR}/ ; \
fi \
${INSTALL} -m 0775 $$tclfile ${dest_TCLDIR}/ ; \
elif [ -d $$tclfile ]; then \
echo ${CP} -r $$tclfile ${dest_TCLDIR}/ ; \
${CP} -r $$tclfile ${dest_TCLDIR}/ ; \
fi; \
done; \
if [ $$install_yn = "yes" ] ; then \
( cd ${dest_TCLDIR} ; echo 'auto_mkindex . *.tcl' | ${TCLSH} ) \
......
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