Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use INSTALL_LIBRARY to install libraries on UNIX. They will now be installed non-executable. This hopefully won't be a problem for anyone. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cccc2e8c1469627711099c94bb8cde2d |
User & Date: | stu 2017-05-28 23:23:13.597 |
Context
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 | |
23:14 | install-sh doesn't need to be executable. check-in: 87a81c3d35 user: stu tags: trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
382 383 384 385 386 387 388 | # You should not have to modify this target. #======================================================================== install-lib-binaries: binaries @$(INSTALL_DATA_DIR) $(DESTDIR)$(pkglibdir) @list='$(lib_BINARIES)'; for p in $$list; do \ if test -f $$p; then \ | | | | 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | # You should not have to modify this target. #======================================================================== install-lib-binaries: binaries @$(INSTALL_DATA_DIR) $(DESTDIR)$(pkglibdir) @list='$(lib_BINARIES)'; for p in $$list; do \ if test -f $$p; then \ echo " $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p"; \ $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p; \ stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \ if test "x$$stub" = "xstub"; then \ echo " $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p"; \ $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p; \ else \ echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \ $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \ |
︙ | ︙ |