diff options
author | stwo <stwo> | 2009-04-24 15:19:45 (GMT) |
---|---|---|
committer | stwo <stwo> | 2009-04-24 15:19:45 (GMT) |
commit | 382591b3b328180c8df82c499dc29434bcadc09a (patch) | |
tree | 0f0a7c3c42d9e0014f2066c9b5ec5cfc471f4c16 /unix/Makefile.in | |
parent | ab2713cacab81ed220958f74e53cb5bd58413a90 (diff) | |
download | tk-382591b3b328180c8df82c499dc29434bcadc09a.zip tk-382591b3b328180c8df82c499dc29434bcadc09a.tar.gz tk-382591b3b328180c8df82c499dc29434bcadc09a.tar.bz2 |
Don't chmod/exec installManPage. [Patch 2769530]
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 58c7703..642a5f5 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.143.2.3 2009/04/10 11:07:32 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.143.2.4 2009/04/24 15:19:45 stwo Exp $ # Current Tk version; used in various names. @@ -190,7 +190,7 @@ NO_DEPRECATED_FLAGS = -DTCL_NO_DEPRECATED # Some versions of make, like SGI's, use the following variable to # determine which shell to use for executing commands: -SHELL = /bin/sh +SHELL = @SHELL@ # BUILD_TCLSH is the fully qualified path name of the tclsh shell # in the Tcl build directory. Test that need to be run in the @@ -819,9 +819,6 @@ install-demos: done; install-doc: - @if test ! -x $(UNIX_DIR)/installManPage; then \ - chmod +x $(UNIX_DIR)/installManPage; \ - fi @for i in "$(MAN_INSTALL_DIR)" "$(MAN1_INSTALL_DIR)" "$(MAN3_INSTALL_DIR)" "$(MANN_INSTALL_DIR)" ; \ do \ if [ ! -d "$$i" ] ; then \ @@ -833,17 +830,17 @@ install-doc: done; @echo "Installing and cross-linking top-level (.1) docs"; @for i in $(TOP_DIR)/doc/*.1; do \ - $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MAN1_INSTALL_DIR)"; \ + $(SHELL) $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MAN1_INSTALL_DIR)"; \ done @echo "Installing and cross-linking C API (.3) docs"; @for i in $(TOP_DIR)/doc/*.3; do \ - $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MAN3_INSTALL_DIR)"; \ + $(SHELL) $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MAN3_INSTALL_DIR)"; \ done @echo "Installing and cross-linking command (.n) docs"; @for i in $(TOP_DIR)/doc/*.n; do \ - $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MANN_INSTALL_DIR)"; \ + $(SHELL) $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MANN_INSTALL_DIR)"; \ done # Optional target to install private headers |