Index: Makefile.in =================================================================== RCS file: /cvsroot/tclhttpd/tclhttpd/Makefile.in,v retrieving revision 1.30 diff -u -p -u -p -r1.30 Makefile.in --- Makefile.in 11 Aug 2003 16:46:57 -0000 1.30 +++ Makefile.in 30 Nov 2004 04:25:31 -0000 @@ -298,7 +298,7 @@ cryptLib.$(OBJEXT): $(srcdir)/src/cryptL $(COMPILE) -c `@CYGPATH@ $(srcdir)/src/cryptLib.c` -o $@ -install-binaries: +install-binaries: installdirs @echo "Installing script programs in $(DESTDIR)$(prefix)/bin" @for i in $(srcdir)/bin/*.tcl ; do \ $(INSTALL_PROGRAM) $$i $(DESTDIR)$(prefix)/bin ; \ @@ -316,7 +316,7 @@ install-libraries: install-custom instal done; $(INSTALL_SCRIPT) $(srcdir)/lib/mime.types $(DESTDIR)$(pkglibdir) -install-htdocs: +install-htdocs: installdirs @echo "Creating htdocs tree in $(htdocsdir)" -chmod 755 `@CYGPATH@ $(srcdir)/htdocs/cgi-bin/*.cgi` $(TCLSH_PROG) `@CYGPATH@ $(srcdir)/bin/CopyDist` `@CYGPATH@ $(srcdir)/htdocs` `@CYGPATH@ $(DESTDIR)$(htdocsdir)` @@ -329,7 +329,7 @@ install-htdocs: @echo "Copying license.terms into $(DESTDIR)$(htdocsdir)" $(INSTALL_DATA) $(srcdir)/license.terms $(DESTDIR)$(htdocsdir)/license.terms -install-custom: +install-custom: installdirs @echo "Adding custom code in $(DESTDIR)$(customdir)" $(TCLSH_PROG) `@CYGPATH@ $(srcdir)/bin/CopyDist` `@CYGPATH@ $(srcdir)/custom` `@CYGPATH@ $(DESTDIR)$(customdir)` Index: bin/tclhttpd.rc =================================================================== RCS file: /cvsroot/tclhttpd/tclhttpd/bin/tclhttpd.rc,v retrieving revision 1.17 diff -u -p -u -p -r1.17 tclhttpd.rc --- bin/tclhttpd.rc 28 Oct 2004 20:21:41 -0000 1.17 +++ bin/tclhttpd.rc 30 Nov 2004 04:25:32 -0000 @@ -23,7 +23,8 @@ foreach d [list \ [file join [Config home] ../htdocs] \ - [file join [Config home] ../tclhttpd/htdocs]] { + [file join [Config home] ../tclhttpd/htdocs] \ + [file join [Config home] ../share/tclhttpd/htdocs]] { if {[file isdirectory $d]} { Config docRoot $d } @@ -34,7 +35,8 @@ foreach d [list \ foreach d [list \ [file join [Config home] ../custom] \ - [file join [Config home] ../tclhttpd/custom]] { + [file join [Config home] ../tclhttpd/custom] \ + [file join [Config home] ../share/tclhttpd/custom]] { if {[file isdirectory $d]} { Config library $d }