Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Install executables 555 instead of 755. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ab269571d5f748e037dade9e5aec8a2e |
User & Date: | stu 2017-05-28 23:24:35.608 |
Context
2017-06-05
| ||
19:10 | Use tdbc_SRC_DIR from tdbcConfig.sh to locate genstubs tool, instead of hardcoded path. Make genstubs target like the other tdbcs'. check-in: 9e1ebeaf84 user: stu tags: trunk, tdbcpostgres-1-0-5 | |
2017-05-28
| ||
23:24 | Install executables 555 instead of 755. check-in: ab269571d5 user: stu tags: trunk | |
23:23 | Use INSTALL_LIBRARY to install libraries on UNIX. They will now be installed non-executable. This hopefully won't be a problem for anyone. check-in: cccc2e8c14 user: stu tags: trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
75 76 77 78 79 80 81 | pkgincludedir = $(includedir)/$(PKG_DIR) top_builddir = . INSTALL_OPTIONS = INSTALL = $(SHELL) $(srcdir)/tclconfig/install-sh -c ${INSTALL_OPTIONS} INSTALL_DATA_DIR = ${INSTALL} -d -m 755 | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | pkgincludedir = $(includedir)/$(PKG_DIR) top_builddir = . INSTALL_OPTIONS = INSTALL = $(SHELL) $(srcdir)/tclconfig/install-sh -c ${INSTALL_OPTIONS} INSTALL_DATA_DIR = ${INSTALL} -d -m 755 INSTALL_PROGRAM = ${INSTALL} -m 555 INSTALL_DATA = ${INSTALL} -m 444 INSTALL_SCRIPT = ${INSTALL_PROGRAM} INSTALL_LIBRARY = ${INSTALL_DATA} PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ CC = @CC@ |
︙ | ︙ |