From 29c08419dbb0828d9a17a8a8428a028c9c35d8e4 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Sat, 16 Jan 1999 08:29:29 +0000 Subject: See ChangeLog: Sat Jan 16 09:27:30 CET 1999 Werner Koch --- scripts/ChangeLog | 5 +++++ scripts/commit | 26 ++++++++++++++++++++++++++ scripts/config.guess | 4 ++-- scripts/config.sub | 8 +++++++- 4 files changed, 40 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/ChangeLog b/scripts/ChangeLog index 9437367e3..b3eaae7f3 100644 --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 16 09:27:30 CET 1999 Werner Koch + + * config.guess (m68k-atari-mint): New. + * config.sub: Add support for atarist-MiNT + Wed Jan 13 12:49:36 CET 1999 Werner Koch * gnupg.spec.in: New diff --git a/scripts/commit b/scripts/commit index d74747e95..992f93c3d 100755 --- a/scripts/commit +++ b/scripts/commit @@ -23,5 +23,31 @@ for i in `find . -name Changes -print`; do fi done +# Execute canned cvs remove commands +for i in `find . -name cvs-remove -print`; do + dir=`dirname $i` + if [ -s $dir/cvs-remove ]; then + here=`pwd` + cd $dir + if cvs remove -f `cat cvs-remove`; then + rm cvs-remove + fi + cd $here + fi +done + +# Execute canned cvs add commands +for i in `find . -name cvs-add -print`; do + dir=`dirname $i` + if [ -s $dir/cvs-add ]; then + here=`pwd` + cd $dir + if cvs add `cat cvs-add`; then + rm cvs-add + fi + cd $here + fi +done + cvs commit -m "See ChangeLog: $date $name" $* diff --git a/scripts/config.guess b/scripts/config.guess index 6413fa44f..03db0ec08 100755 --- a/scripts/config.guess +++ b/scripts/config.guess @@ -1,6 +1,6 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. +# Copyright (C) 1992, 93, 94, 95, 96, 97, 1999 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -138,7 +138,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in atari*:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; - atari*:[Mm]i[Nn][Tt]:*:*) + atari*:MiNT:*:*) echo m68k-atari-mint exit 0 ;; sun3*:NetBSD:*:*) diff --git a/scripts/config.sub b/scripts/config.sub index a0deddae0..b95132478 100755 --- a/scripts/config.sub +++ b/scripts/config.sub @@ -1,6 +1,6 @@ #! /bin/sh # Configuration validation subroutine script, version 1.1. -# Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc. +# Copyright (C) 1991, 92, 93, 94, 95, 96, 1999 Free Software Foundation, Inc. # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. @@ -279,6 +279,9 @@ case $basic_machine in basic_machine=m68k-apollo os=-bsd ;; + atarist) + basic_machine=m68k-atari + ;; aux) basic_machine=m68k-apple os=-aux @@ -965,6 +968,9 @@ case $os in -xenix) os=-xenix ;; + -MiNT | -mint) + os=-mint + ;; -none) ;; *) -- cgit v1.2.3