TDBC

Check-in [43b96d33bb]
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
Timelines: family | ancestors | descendants | both | trunk | tdbc-1-0-5
Files: files | file ages | folders
SHA1: 43b96d33bbdb4e1e035b1871a48e222bc97782b0
User & Date: stu 2017-05-26 18:33:56.214
Context
2017-12-06
18:39
Ensure consistent results. From kbk. check-in: ccbfd35b36 user: stu tags: trunk
2017-05-26
18:33
rm -f not needed before ${INSTALL_*}. A ghost of past installing. check-in: 43b96d33bb user: stu tags: trunk, tdbc-1-0-5
2017-05-25
16:10
obect -> object. Closes [cf073c38f2]. check-in: da98ff490b user: stu tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Makefile.in.
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#========================================================================

install-doc: doc
	@$(INSTALL_DATA_DIR) $(DESTDIR)$(mandir)/man3 $(DESTDIR)$(mandir)/mann
	@echo "Installing documentation in $(DESTDIR)$(mandir)"
	@list='$(srcdir)/doc/*.3'; for i in $$list; do \
	    echo "Installing $$i"; \
	    rm -f $(DESTDIR)$(mandir)/man3/`basename $$i`; \
	    $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/man3 ; \
	done
	@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

test: binaries libraries
	@$(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) \
		-load "package ifneeded ${PACKAGE_NAME} ${PACKAGE_VERSION} \
			[list source `@CYGPATH@ $(srcdir)/library/tdbc.tcl`]\;[list load `@CYGPATH@ $(PKG_LIB_FILE)` $(PACKAGE_NAME)]"







<




<







227
228
229
230
231
232
233

234
235
236
237

238
239
240
241
242
243
244
#========================================================================

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

	    $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/man3 ; \
	done
	@list='$(srcdir)/doc/*.n'; for i in $$list; do \
	    echo "Installing $$i"; \

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

test: binaries libraries
	@$(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS) \
		-load "package ifneeded ${PACKAGE_NAME} ${PACKAGE_VERSION} \
			[list source `@CYGPATH@ $(srcdir)/library/tdbc.tcl`]\;[list load `@CYGPATH@ $(PKG_LIB_FILE)` $(PACKAGE_NAME)]"