summaryrefslogtreecommitdiffstats
path: root/generic/tclPort.h
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2008-11-04 23:54:30 (GMT)
committerhobbs <hobbs@noemail.net>2008-11-04 23:54:30 (GMT)
commitfc209607b8160b7658974760aec2b53ec63111c8 (patch)
tree3ae71f73c40eee26da0b95739f92c0bd6d69aae3 /generic/tclPort.h
parentffa1c40969deab5095ec238e9d904fe6e97bd318 (diff)
downloadtcl-fc209607b8160b7658974760aec2b53ec63111c8.zip
tcl-fc209607b8160b7658974760aec2b53ec63111c8.tar.gz
tcl-fc209607b8160b7658974760aec2b53ec63111c8.tar.bz2
* generic/tclPort.h: remove the ../{win,unix}/ header dirs as the
build system already has it, and it confuses builds when used with private headers installed. FossilOrigin-Name: 8eb504dbf18996ec3aac1090f73ae4d83b22b06b
Diffstat (limited to 'generic/tclPort.h')
-rw-r--r--generic/tclPort.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclPort.h b/generic/tclPort.h
index d724c73..7b0d741 100644
--- a/generic/tclPort.h
+++ b/generic/tclPort.h
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclPort.h,v 1.6.2.1 2003/04/16 23:31:46 dgp Exp $
+ * RCS: @(#) $Id: tclPort.h,v 1.6.2.2 2008/11/04 23:54:30 hobbs Exp $
*/
#ifndef _TCLPORT
@@ -19,12 +19,12 @@
#include "tcl.h"
#if defined(__WIN32__)
-# include "../win/tclWinPort.h"
+# include "tclWinPort.h"
#else
# if defined(MAC_TCL)
# include "tclMacPort.h"
# else
-# include "../unix/tclUnixPort.h"
+# include "tclUnixPort.h"
# endif
#endif