diff options
author | Doug Evans <dje@google.com> | 1998-07-24 15:48:47 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-07-24 15:48:47 +0000 |
commit | 66f3fbe13cfc640ecc8f30e40057af6e80f96a01 (patch) | |
tree | a6b08dfc243603fc21210c3d2ce76c5b4a9a35b8 /config | |
parent | 456876c8c4acde3502377a3133f2120a5ae87a52 (diff) | |
download | gdb-66f3fbe13cfc640ecc8f30e40057af6e80f96a01.zip gdb-66f3fbe13cfc640ecc8f30e40057af6e80f96a01.tar.gz gdb-66f3fbe13cfc640ecc8f30e40057af6e80f96a01.tar.bz2 |
* mt-sky: New file.
Diffstat (limited to 'config')
-rw-r--r-- | config/.Sanitize | 34 | ||||
-rw-r--r-- | config/ChangeLog | 39 |
2 files changed, 73 insertions, 0 deletions
diff --git a/config/.Sanitize b/config/.Sanitize index e44c413..ceb33b8 100644 --- a/config/.Sanitize +++ b/config/.Sanitize @@ -27,6 +27,12 @@ else keep_these_too="${keep_these_too} mh-windows" fi +if ( echo $* | grep keep\-sky > /dev/null ) ; then + keep_these_too="${keep_these_too} mt-sky" +else + lose_these_too="${lose_these_too} mt-sky" +fi + # All files listed between the "Things-to-keep:" line and the # "Do-last:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize @@ -123,6 +129,34 @@ else done fi +sky_files="ChangeLog" +if ( echo $* | grep keep\-sky > /dev/null ) ; then + for i in $sky_files ; do + if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping sky stuff in $i + fi + fi + done +else + for i in $sky_files ; do + if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"sky\" from $i... + fi + cp $i new + sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new + if [ -n "${safe}" -a ! -f .Recover/$i ] ; then + if [ -n "${verbose}" ] ; then + echo Caching $i in .Recover... + fi + mv $i .Recover + fi + mv new $i + fi + done +fi + cygnus_files="mh-go32" if ( echo $* | grep keep\-cygnus > /dev/null ) ; then for i in $cygnus_files ; do diff --git a/config/ChangeLog b/config/ChangeLog index 9882643..1c44cde 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,42 @@ +start-sanitize-sky +Fri Jul 24 08:46:41 1998 Doug Evans <devans@canuck.cygnus.com> + + * mt-sky: New file. + +end-sanitize-sky +start-sanitize-tmgr +1998-05-29 Rob Savoye <rob@chinadoll.cygnus.com> + + * acinclude.m4: New collection of generic autoconf macros + developed for the Target Manager. + +end-sanitize-tmgr + +Wed Apr 22 12:24:28 1998 Michael Meissner <meissner@cygnus.com> + + * mt-ospace: New file, support using -Os instead of -O2 to compile + the libraries. + +Wed Apr 22 10:53:14 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + + * mt-linux (CXXFLAGS_FOR_TARGET): Set this instead of CXXFLAGS. + +Sat Apr 11 22:43:17 1998 J. Kean Johnston <jkj@sco.com> + + * mh-svsv5: New file - support for SCO UnixWare 7 / SVR5. + +Thu Mar 26 01:54:25 1998 Geoffrey Noer <noer@cygnus.com> + + * mh-cygwin32: stop configuring and building dosrel. + +Thu Sep 11 16:43:27 1997 Jim Wilson <wilson@cygnus.com> + + * mh-elfalphapic, mt-elfalphapic: New files. + +Wed Jul 23 12:32:18 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE> + + * mh-go32 (CFLAGS): Don't set -fno-omit-frame-pointer. + Mon Jun 16 19:06:41 1997 Geoff Keating <geoffk@ozemail.com.au> * mh-ppcpic: New file. |