tdbc::sqlite3

Check-in [a5d1b47530]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:rm -f not needed before ${INSTALL_*}. A ghost of past installing.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: a5d1b4753044c26fa6c7cdf407d88d332fe2b017
User & Date: stu 2017-05-26 18:32:11
Context
2017-05-29
21:07
FILE -> DB check-in: e08976e6a8 user: stu tags: trunk, tdbcsqlite3-1-0-5
2017-05-26
18:32
rm -f not needed before ${INSTALL_*}. A ghost of past installing. check-in: a5d1b47530 user: stu tags: trunk
2017-05-23
19:37
Merge tdbcsqlite3-stwo. check-in: 84905d446b user: stu tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to Makefile.in.

172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#========================================================================

install-doc: doc
	@$(INSTALL_DATA_DIR) $(DESTDIR)$(mandir)/mann
	@echo "Installing documentation in $(DESTDIR)$(mandir)"
	@list='$(srcdir)/doc/*.n'; for i in $$list; do \
	    echo "Installing $$i"; \
	    rm -f $(DESTDIR)$(mandir)/mann/`basename $$i`; \
	    $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \
	done

# If the semicolon is omitted after the [list source ...], then
# at least one version of msys make replaces the slashes in the
# $(srcdir)/library/tdbcsqlite3.tcl path with backslashes, causing
# the [package ifneeded] to fail. Leave it in, even though it's







<







172
173
174
175
176
177
178

179
180
181
182
183
184
185
#========================================================================

install-doc: doc
	@$(INSTALL_DATA_DIR) $(DESTDIR)$(mandir)/mann
	@echo "Installing documentation in $(DESTDIR)$(mandir)"
	@list='$(srcdir)/doc/*.n'; for i in $$list; do \
	    echo "Installing $$i"; \

	    $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \
	done

# If the semicolon is omitted after the [list source ...], then
# at least one version of msys make replaces the slashes in the
# $(srcdir)/library/tdbcsqlite3.tcl path with backslashes, causing
# the [package ifneeded] to fail. Leave it in, even though it's