Expect

Check-in [abb4b3ca87]
Login

Check-in [abb4b3ca87]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:remove html dist piece
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: abb4b3ca87c3de8c383355382be726562dab670f
User & Date: hobbs 2010-09-17 16:49:22.000
Context
2010-09-30
17:14
* Makefile.in: Continued work on the 'make dist' target (config.{sub,guess}) * install.sh: Removed unused file. * mkinstalldirs: Removed unused file. * tclconfig/README.txt: Removed unused file. * testsuite/config/: Removed contents of unused directory. * test/.Sanitize: Removed unused file. check-in: 021995d879 user: andreas_kupries tags: trunk
2010-09-17
16:49
remove html dist piece check-in: abb4b3ca87 user: hobbs tags: trunk
16:43
* Makefile.in: improved make dist target to include the necessary files, and remove old dist_orig. Enable Makefile regen target check-in: 49e58b2fc2 user: hobbs tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Makefile.in.
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Copyright (c) 1999 Scriptics Corporation.
# Copyright (c) 2002-2005 ActiveState Corporation.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 5.48 2010/09/16 20:35:46 hobbs Exp $

#========================================================================
#========================================================================

# expect must be setuid on crays in order to open ptys (and accordingly,
# you must run this Makefile as root).
# See the FAQ for more info on why this is necessary on Crays.







|







8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Copyright (c) 1999 Scriptics Corporation.
# Copyright (c) 2002-2005 ActiveState Corporation.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 5.49 2010/09/17 16:43:40 hobbs Exp $

#========================================================================
#========================================================================

# expect must be setuid on crays in order to open ptys (and accordingly,
# you must run this Makefile as root).
# See the FAQ for more info on why this is necessary on Crays.
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375

	mkdir $(DIST_DIR)/tclconfig
	cp $(srcdir)/tclconfig/install-sh $(srcdir)/tclconfig/tcl.m4 \
		$(DIST_DIR)/tclconfig/
	chmod 664 $(DIST_DIR)/tclconfig/tcl.m4
	chmod +x $(DIST_DIR)/tclconfig/install-sh

	cp -p $(srcdir)/*.{c,h,man,html} $(srcdir)/vgrindefs $(srcdir)/NEWS \
		$(srcdir)/INSTALL $(srcdir)/FAQ $(srcdir)/HISTORY \
		$(DIST_DIR)/
	chmod 664 $(DIST_DIR)/*.{c,h,man,html}

	-list='demos example generic library tests unix win tests testsuite'; \
	for p in $$list; do \
	    if test -d $(srcdir)/$$p ; then \
		mkdir -p $(DIST_DIR)/$$p; \
		cp -p $(srcdir)/$$p/* $(DIST_DIR)/$$p/; \
	    fi; \







|


|







358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375

	mkdir $(DIST_DIR)/tclconfig
	cp $(srcdir)/tclconfig/install-sh $(srcdir)/tclconfig/tcl.m4 \
		$(DIST_DIR)/tclconfig/
	chmod 664 $(DIST_DIR)/tclconfig/tcl.m4
	chmod +x $(DIST_DIR)/tclconfig/install-sh

	cp -p $(srcdir)/*.{c,h,man} $(srcdir)/vgrindefs $(srcdir)/NEWS \
		$(srcdir)/INSTALL $(srcdir)/FAQ $(srcdir)/HISTORY \
		$(DIST_DIR)/
	chmod 664 $(DIST_DIR)/*.{c,h,man}

	-list='demos example generic library tests unix win tests testsuite'; \
	for p in $$list; do \
	    if test -d $(srcdir)/$$p ; then \
		mkdir -p $(DIST_DIR)/$$p; \
		cp -p $(srcdir)/$$p/* $(DIST_DIR)/$$p/; \
	    fi; \