diff options
author | hobbs <hobbs> | 1999-09-24 22:17:53 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-09-24 22:17:53 (GMT) |
commit | cf037b7a78766c0e912a94a0b937a98d658faa02 (patch) | |
tree | c0a478c1900007383402a2d594a870fa69f09e8f | |
parent | e6c3dfd1b13969c68383847c3e15efa3f53ea0e5 (diff) | |
download | tk-cf037b7a78766c0e912a94a0b937a98d658faa02.zip tk-cf037b7a78766c0e912a94a0b937a98d658faa02.tar.gz tk-cf037b7a78766c0e912a94a0b937a98d658faa02.tar.bz2 |
1999-09-24 Jeff Hobbs <hobbs@scriptics.com>
* unix/Makefile.in: changed 'mkdir' to 'mkdir -p'
* library/dialog.tcl: changed {Times 18} to {Times 12} for
dialog font.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | library/dialog.tcl | 4 | ||||
-rw-r--r-- | unix/Makefile.in | 12 |
3 files changed, 14 insertions, 8 deletions
@@ -1,3 +1,9 @@ +1999-09-24 Jeff Hobbs <hobbs@scriptics.com> + + * unix/Makefile.in: changed 'mkdir' to 'mkdir -p' + * library/dialog.tcl: changed {Times 18} to {Times 12} for + dialog font. + 1999-09-23 Jeff Hobbs <hobbs@scriptics.com> * README: diff --git a/library/dialog.tcl b/library/dialog.tcl index be5a81e..5d13063 100644 --- a/library/dialog.tcl +++ b/library/dialog.tcl @@ -3,7 +3,7 @@ # This file defines the procedure tk_dialog, which creates a dialog # box containing a bitmap, a message, and one or more buttons. # -# RCS: @(#) $Id: dialog.tcl,v 1.4 1999/04/16 01:51:26 stanton Exp $ +# RCS: @(#) $Id: dialog.tcl,v 1.4.6.1 1999/09/24 22:17:58 hobbs Exp $ # # Copyright (c) 1992-1993 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -68,7 +68,7 @@ proc tk_dialog {w title text bitmap default args} { if {![string compare $tcl_platform(platform) "macintosh"]} { option add *Dialog.msg.font system widgetDefault } else { - option add *Dialog.msg.font {Times 18} widgetDefault + option add *Dialog.msg.font {Times 12} widgetDefault } label $w.msg -justify left -text $text diff --git a/unix/Makefile.in b/unix/Makefile.in index 960e19e..59826f3 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.29.4.2 1999/09/23 22:03:32 wart Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.29.4.3 1999/09/24 22:18:01 hobbs Exp $ # Current Tk version; used in various names. @@ -430,7 +430,7 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) $(TK_BUILD_EXP_FILE) wish do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -462,7 +462,7 @@ install-libraries: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -494,7 +494,7 @@ install-demos: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -524,7 +524,7 @@ install-doc: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -924,7 +924,7 @@ $(UNIX_DIR)/configure: $(UNIX_DIR)/configure.in dist: $(UNIX_DIR)/configure rm -rf $(DISTDIR) - mkdir $(DISTDIR) + mkdir -p $(DISTDIR) mkdir $(DISTDIR)/unix cp -p $(UNIX_DIR)/*.c $(UNIX_DIR)/*.h $(DISTDIR)/unix cp $(TOP_DIR)/license.terms $(UNIX_DIR)/Makefile.in $(DISTDIR)/unix |