diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-08-29 12:37:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-08-29 12:37:06 (GMT) |
commit | 4c5d518f5499a0a9f50e08bba0484cb6650b816a (patch) | |
tree | 7073f03e8e55b3535abcf28145846c585303f5a1 /unix | |
parent | abfbb5817007d6610c0cc7352f1d2efcffdda1bc (diff) | |
download | tcl-4c5d518f5499a0a9f50e08bba0484cb6650b816a.zip tcl-4c5d518f5499a0a9f50e08bba0484cb6650b816a.tar.gz tcl-4c5d518f5499a0a9f50e08bba0484cb6650b816a.tar.bz2 |
Ensure that all TclOO headers get installed. [Bug 2082299]
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 3ed9008..7ead8d7 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.245 2008/08/13 23:07:07 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.246 2008/08/29 12:37:16 dkf Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -782,6 +782,7 @@ install-libraries: libraries $(INSTALL_TZDATA) install-msgs fi @echo "Installing header files"; @for i in $(GENERIC_DIR)/tcl.h $(GENERIC_DIR)/tclDecls.h \ + $(GENERIC_DIR)/tclOO.h $(GENERIC_DIR)/tclOODecls.h \ $(GENERIC_DIR)/tclPlatDecls.h \ $(GENERIC_DIR)/tclTomMath.h \ $(GENERIC_DIR)/tclTomMathDecls.h ; \ @@ -885,6 +886,7 @@ install-private-headers: libraries @echo "Installing private header files"; @for i in $(GENERIC_DIR)/tclInt.h $(GENERIC_DIR)/tclIntDecls.h \ $(GENERIC_DIR)/tclIntPlatDecls.h $(GENERIC_DIR)/tclPort.h \ + $(GENERIC_DIR)/tclOOInt.h $(GENERIC_DIR)/tclOOIntDecls.h \ $(UNIX_DIR)/tclUnixPort.h; \ do \ $(INSTALL_DATA) $$i "$(PRIVATE_INCLUDE_INSTALL_DIR)"; \ |