home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-08-20 | 38.9 KB | 1,389 lines |
- Newsgroups: comp.sources.misc
- From: Raphael Manfredi <ram@acri.fr>
- Subject: v39i033: dist-3.0 - Configure script generator and related tools, Patch01
- Message-ID: <1993Aug20.132039.22883@sparky.sterling.com>
- X-Md4-Signature: 5d2b8a957a9294d121d1c755d43cc27d
- Sender: kent@sparky.sterling.com (Kent Landfield)
- Organization: Advanced Computer Research Institute, Lyon, France
- Date: Fri, 20 Aug 1993 13:20:39 GMT
- Approved: kent@sparky.sterling.com
-
- Submitted-by: Raphael Manfredi <ram@acri.fr>
- Posting-number: Volume 39, Issue 33
- Archive-name: dist-3.0/patch01
- Environment: UNIX, Perl, RCS
- Patch-To: dist-3.0: Volume 39, Issue 5-32
-
- [The latest patch for dist version 3.0 is #2.]
-
- System: dist version 3.0
- Patch #: 1
- Priority: HIGH
- Subject: leading config.sh searching was not aborting properly
- Date: Thu Aug 19 08:49:06 MET DST 1993
- From: Raphael Manfredi <ram@acri.fr>
-
- Description:
- Leading config.sh searching was not aborting properly... The test
- was:
-
- case $CONFIG in
- '')
- if test -f config.sh; then TOP=.;
- elif test -f ../config.sh; then TOP=..;
- elif test -f ../../config.sh; then TOP=../..;
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- esac
-
- And clearly, the parenthesis in the else clause are not needed.
- All the .SH files have been updated in this patch, as well as
- the files producing some like makeSH, mcon/U/Config_h.U and
- jmake/files/Jmake.tmpl.
-
- Thanks to <serge@euler.berkeley.edu> for reporting this bug
- to me almost immediately!!
-
- Repeat-By:
-
- Fix: From rn, say "| patch -p -N -d DIR", where DIR is your dist source
- directory. Outside of rn, say "cd DIR; patch -p -N <thisarticle".
- If you don't have the patch program, apply the following by hand,
- or get patch (version 2.0, latest patchlevel).
-
- After patching:
- *** DO NOTHING--INSTALL ALL PATCHES UP THROUGH #2 FIRST ***
-
- If patch indicates that patchlevel is the wrong version, you may need
- to apply one or more previous patches, or the patch may already
- have been applied. See the patchlevel.h file to find out what has or
- has not been applied. In any event, don't continue with the patch.
-
- If you are missing previous patches (hah!) they can be obtained from me:
-
- Raphael Manfredi <ram@acri.fr>
-
- If you send a mail message of the following form it will greatly speed
- processing:
-
- Subject: Command
- @SH mailpatch PATH dist 3.0 LIST
- ^ note the c
-
- where PATH is a return path FROM ME TO YOU either in Internet notation,
- or in bang notation from some well-known host, and LIST is the number
- of one or more patches you need, separated by spaces, commas, and/or
- hyphens. Saying 35- says everything from 35 to the end.
-
- To get some more detailed instructions, send me the following mail:
-
- Subject: Command
- @SH mailhelp PATH
-
-
- Index: patchlevel.h
- Prereq: 0
- 4c4
- < #define PATCHLEVEL 0
- ---
- > #define PATCHLEVEL 1
-
- Index: Makefile.SH
- *** Makefile.SH.old Thu Aug 19 08:48:19 1993
- --- Makefile.SH Thu Aug 19 08:48:19 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 51,62 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8.1.1 91/10/18 10:09:07 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 51,62 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:03:53 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 66,78 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 2.8.1.1 91/10/18 10:09:07 ram
- ! # patch7: tried to install a non-existent manual page for packinit
- ! # patch7: reported by Christian Bertin <bertin@acri.fr>
- ! #
- ! # Revision 2.8 91/07/08 13:22:56 ram
- ! # 3.0 alpha baseline.
- #
-
- all::
- --- 66,74 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:03:53 ram
- ! # Baseline for dist 3.0 netwide release.
- #
-
- all::
-
- Index: bin/Makefile.SH
- *** bin/Makefile.SH.old Thu Aug 19 08:48:20 1993
- --- bin/Makefile.SH Thu Aug 19 08:48:20 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 52,63 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8.1.1 91/10/18 10:09:07 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 52,63 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:00 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 67,73 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
-
- BIN = packinit manicheck manilist
-
- --- 67,76 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:04:00 ram
- ! # Baseline for dist 3.0 netwide release.
- ! #
-
- BIN = packinit manicheck manilist
-
-
- Index: jmake/Makefile.SH
- *** jmake/Makefile.SH.old Thu Aug 19 08:48:27 1993
- --- jmake/Makefile.SH Thu Aug 19 08:48:27 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 53,64 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8.1.1 91/07/14 13:34:08 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 53,64 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:09 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 68,79 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 2.8.1.1 91/07/14 13:34:08 ram
- ! # patch1: bindex was wrongly installed as a public executable
- ! #
- ! # Revision 2.8 91/07/08 13:27:23 ram
- ! # 3.0 alpha baseline.
- #
-
- all:: Index
- --- 68,76 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:04:09 ram
- ! # Baseline for dist 3.0 netwide release.
- #
-
- all:: Index
-
- Index: kit/Makefile.SH
- *** kit/Makefile.SH.old Thu Aug 19 08:48:32 1993
- --- kit/Makefile.SH Thu Aug 19 08:48:32 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 52,63 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8 91/07/08 13:27:57 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 52,63 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:21 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 67,75 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 2.8 91/07/08 13:27:57 ram
- ! # 3.0 alpha baseline.
- #
-
- SCRIPT_SH = makedist manifake kitsend
- --- 67,75 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:04:21 ram
- ! # Baseline for dist 3.0 netwide release.
- #
-
- SCRIPT_SH = makedist manifake kitsend
-
- Index: lib/Makefile.SH
- *** lib/Makefile.SH.old Thu Aug 19 08:48:37 1993
- --- lib/Makefile.SH Thu Aug 19 08:48:37 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 45,56 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8.1.1 91/10/18 10:09:07 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 45,56 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:34 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 60,66 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
-
- FILES = errnolist.a errnolist.mk
- FILES_SH = errnolist makedepend makedir
- --- 60,69 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:04:34 ram
- ! # Baseline for dist 3.0 netwide release.
- ! #
-
- FILES = errnolist.a errnolist.mk
- FILES_SH = errnolist makedepend makedir
-
- Index: mcon/Makefile.SH
- *** mcon/Makefile.SH.old Thu Aug 19 08:48:38 1993
- --- mcon/Makefile.SH Thu Aug 19 08:48:38 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 51,62 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8 91/07/08 13:28:49 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 51,62 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:40 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 66,74 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 2.8 91/07/08 13:28:49 ram
- ! # 3.0 alpha baseline.
- #
-
- all:: Glossary
- --- 66,74 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:04:40 ram
- ! # Baseline for dist 3.0 netwide release.
- #
-
- all:: Glossary
-
- Index: mcon/man/Makefile.SH
- *** mcon/man/Makefile.SH.old Thu Aug 19 08:48:41 1993
- --- mcon/man/Makefile.SH Thu Aug 19 08:48:41 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 59,70 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.9 92/07/14 16:49:04 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 59,70 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:10:13 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 74,82 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 2.9 92/07/14 16:49:04 ram
- ! # 3.0 beta baseline.
- #
-
- MPAGES = metaconfig.$(L) metalint.$(L) metaxref.$(L)
- --- 74,82 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:10:13 ram
- ! # Baseline for dist 3.0 netwide release.
- #
-
- MPAGES = metaconfig.$(L) metalint.$(L) metaxref.$(L)
-
- Index: pat/Makefile.SH
- *** pat/Makefile.SH.old Thu Aug 19 08:48:49 1993
- --- pat/Makefile.SH Thu Aug 19 08:48:49 1993
- ***************
- *** 1,5 ****
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
-
- case $CONFIG in
- '')
- --- 1,5 ----
- : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
- ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
-
- case $CONFIG in
- '')
- ***************
- *** 9,15 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 9,15 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 47,58 ****
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 2.8.1.2 91/11/03 16:33:16 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 47,58 ----
- $spitshell >>Makefile <<'!NO!SUBS!'
- ########################################################################
- # Jmake rules for building libraries, programs, scripts, and data files
- ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
-
- ########################################################################
- # Start of Jmakefile
-
- ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:10:32 ram Exp ram $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 62,76 ****
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 2.8.1.2 91/11/03 16:33:16 ram
- ! # patch7: makefile made more generic by using new improved expand
- ! #
- ! # Revision 2.8.1.1 91/07/14 13:01:31 ram
- ! # patch1: added manual page for pat tools
- ! #
- ! # Revision 2.8 91/07/08 13:26:08 ram
- ! # 3.0 alpha baseline.
- #
-
- BASE = // cil base diff make clean col name ftp send index post
- --- 62,70 ----
- # that same Artistic Licence; a copy of which may be found at the root
- # of the source tree for dist 3.0.
- #
- ! # $X-Log: Jmakefile,v $
- ! # Revision 3.0 1993/08/18 12:10:32 ram
- ! # Baseline for dist 3.0 netwide release.
- #
-
- BASE = // cil base diff make clean col name ftp send index post
-
- Index: mcon/man/mconfig.SH
- Prereq: 3.0
- *** mcon/man/mconfig.SH.old Thu Aug 19 08:48:42 1993
- --- mcon/man/mconfig.SH Thu Aug 19 08:48:43 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
- ''' @(#) Manual page for metaconfig
- '''
- ! ''' $Id: mconfig.SH,v 3.0 1993/08/18 12:10:14 ram Exp $
- '''
- ''' Copyright (c) 1991-1993, Raphael Manfredi
- '''
- --- 20,26 ----
- .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
- ''' @(#) Manual page for metaconfig
- '''
- ! ''' $Id: mconfig.SH,v 3.0.1.1 1993/08/19 06:42:23 ram Exp $
- '''
- ''' Copyright (c) 1991-1993, Raphael Manfredi
- '''
- ***************
- *** 31,36 ****
- --- 31,39 ----
- ''' of the source tree for dist 3.0.
- '''
- ''' $Log: mconfig.SH,v $
- + ''' Revision 3.0.1.1 1993/08/19 06:42:23 ram
- + ''' patch1: leading config.sh searching was not aborting properly
- + '''
- ''' Revision 3.0 1993/08/18 12:10:14 ram
- ''' Baseline for dist 3.0 netwide release.
- '''
- ***************
- *** 561,567 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . \$TOP/config.sh
- ;;
- --- 564,570 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . \$TOP/config.sh
- ;;
- ***************
- *** 648,654 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . \$TOP/config.sh
- ;;
- --- 651,657 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . \$TOP/config.sh
- ;;
- ***************
- *** 698,704 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . \$TOP/config.sh
- ;;
- --- 701,707 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . \$TOP/config.sh
- ;;
-
- Index: mcon/mconfig.SH
- Prereq: 3.0
- *** mcon/mconfig.SH.old Thu Aug 19 08:48:46 1993
- --- mcon/mconfig.SH Thu Aug 19 08:48:46 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: mconfig.SH,v 3.0 1993/08/18 12:10:17 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: mconfig.SH,v 3.0.1.1 1993/08/19 06:42:26 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 34,39 ****
- --- 34,42 ----
- # Key Contributor: Harlan Stenn <harlan@mumps.pfcs.com>
- #
- # $Log: mconfig.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:26 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:17 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: mcon/man/mxref.SH
- Prereq: 3.0
- *** mcon/man/mxref.SH.old Thu Aug 19 08:48:45 1993
- --- mcon/man/mxref.SH Thu Aug 19 08:48:45 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
- ''' @(#) Manual page for metaxref
- '''
- ! ''' $Id: mxref.SH,v 3.0 1993/08/18 12:10:15 ram Exp $
- '''
- ''' Copyright (c) 1991-1993, Raphael Manfredi
- '''
- --- 20,26 ----
- .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
- ''' @(#) Manual page for metaxref
- '''
- ! ''' $Id: mxref.SH,v 3.0.1.1 1993/08/19 06:42:25 ram Exp $
- '''
- ''' Copyright (c) 1991-1993, Raphael Manfredi
- '''
- ***************
- *** 31,36 ****
- --- 31,39 ----
- ''' of the source tree for dist 3.0.
- '''
- ''' $Log: mxref.SH,v $
- + ''' Revision 3.0.1.1 1993/08/19 06:42:25 ram
- + ''' patch1: leading config.sh searching was not aborting properly
- + '''
- ''' Revision 3.0 1993/08/18 12:10:15 ram
- ''' Baseline for dist 3.0 netwide release.
- '''
-
- Index: mcon/mxref.SH
- Prereq: 3.0
- *** mcon/mxref.SH.old Thu Aug 19 08:48:48 1993
- --- mcon/mxref.SH Thu Aug 19 08:48:48 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: mxref.SH,v 3.0 1993/08/18 12:10:18 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: mxref.SH,v 3.0.1.1 1993/08/19 06:42:27 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
- #
- # $Log: mxref.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:27 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:18 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: mcon/man/mlint.SH
- Prereq: 3.0
- *** mcon/man/mlint.SH.old Thu Aug 19 08:48:44 1993
- --- mcon/man/mlint.SH Thu Aug 19 08:48:44 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
- ''' @(#) Manual page for metalint
- '''
- ! ''' $Id: mlint.SH,v 3.0 1993/08/18 12:10:15 ram Exp $
- '''
- ''' Copyright (c) 1991-1993, Raphael Manfredi
- '''
- --- 20,26 ----
- .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
- ''' @(#) Manual page for metalint
- '''
- ! ''' $Id: mlint.SH,v 3.0.1.1 1993/08/19 06:42:24 ram Exp $
- '''
- ''' Copyright (c) 1991-1993, Raphael Manfredi
- '''
- ***************
- *** 31,36 ****
- --- 31,39 ----
- ''' of the source tree for dist 3.0.
- '''
- ''' $Log: mlint.SH,v $
- + ''' Revision 3.0.1.1 1993/08/19 06:42:24 ram
- + ''' patch1: leading config.sh searching was not aborting properly
- + '''
- ''' Revision 3.0 1993/08/18 12:10:15 ram
- ''' Baseline for dist 3.0 netwide release.
- '''
-
- Index: mcon/mlint.SH
- Prereq: 3.0
- *** mcon/mlint.SH.old Thu Aug 19 08:48:47 1993
- --- mcon/mlint.SH Thu Aug 19 08:48:47 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: mlint.SH,v 3.0 1993/08/18 12:10:17 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: mlint.SH,v 3.0.1.1 1993/08/19 06:42:27 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
- #
- # $Log: mlint.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:27 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:17 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: mcon/U/Config_h.U
- Prereq: 3.0
- *** mcon/U/Config_h.U.old Thu Aug 19 08:48:39 1993
- --- mcon/U/Config_h.U Thu Aug 19 08:48:39 1993
- ***************
- *** 1,4 ****
- ! ?RCS: $Id: Config_h.U,v 3.0 1993/08/18 12:04:47 ram Exp $
- ?RCS:
- ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
- ?RCS:
- --- 1,4 ----
- ! ?RCS: $Id: Config_h.U,v 3.0.1.1 1993/08/19 06:42:20 ram Exp $
- ?RCS:
- ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
- ?RCS:
- ***************
- *** 9,14 ****
- --- 9,17 ----
- ?RCS: of the source tree for dist 3.0.
- ?RCS:
- ?RCS: $Log: Config_h.U,v $
- + ?RCS: Revision 3.0.1.1 1993/08/19 06:42:20 ram
- + ?RCS: patch1: leading config.sh searching was not aborting properly
- + ?RCS:
- ?RCS: Revision 3.0 1993/08/18 12:04:47 ram
- ?RCS: Baseline for dist 3.0 netwide release.
- ?RCS:
- ***************
- *** 37,43 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 40,46 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 57,63 ****
- * that running config.h.SH again will wipe out any changes you've made.
- * For a more permanent change edit config.sh and rerun config.h.SH.
- *
- ! * \$Id: Config_h.U,v 3.0 1993/08/18 12:04:47 ram Exp $
- */
-
- /* Configuration time: $cf_time
- --- 60,66 ----
- * that running config.h.SH again will wipe out any changes you've made.
- * For a more permanent change edit config.sh and rerun config.h.SH.
- *
- ! * \$Id: Config_h.U,v 3.0.1.1 1993/08/19 06:42:20 ram Exp $
- */
-
- /* Configuration time: $cf_time
-
- Index: pat/patmake.SH
- Prereq: 3.0
- *** pat/patmake.SH.old Thu Aug 19 08:49:00 1993
- --- pat/patmake.SH Thu Aug 19 08:49:00 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patmake.SH,v 3.0 1993/08/18 12:10:45 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patmake.SH,v 3.0.1.1 1993/08/19 06:42:38 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 34,39 ****
- --- 34,42 ----
- # Contribution by: Graham Stoney <greyham@research.canon.oz.au>
- #
- # $Log: patmake.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:38 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:45 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: jmake/jmkmf.SH
- Prereq: 3.0
- *** jmake/jmkmf.SH.old Thu Aug 19 08:48:31 1993
- --- jmake/jmkmf.SH Thu Aug 19 08:48:31 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 21,27 ****
- $spitshell >>jmkmf <<'!NO!SUBS!'
- # @(#) Generates a Makefile from a Jmakefile
-
- ! # $Id: jmkmf.SH,v 3.0 1993/08/18 12:04:19 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 21,27 ----
- $spitshell >>jmkmf <<'!NO!SUBS!'
- # @(#) Generates a Makefile from a Jmakefile
-
- ! # $Id: jmkmf.SH,v 3.0.1.1 1993/08/19 06:42:14 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 32,37 ****
- --- 32,40 ----
- # of the source tree for dist 3.0.
- #
- # $Log: jmkmf.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:14 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:19 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: kit/kitsend.SH
- Prereq: 3.0
- *** kit/kitsend.SH.old Thu Aug 19 08:48:33 1993
- --- kit/kitsend.SH Thu Aug 19 08:48:33 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 20,26 ****
- eval 'exec perl -S \$0 "\$@"'
- if \$running_under_some_shell;
-
- ! # $Id: kitsend.SH,v 3.0 1993/08/18 12:04:25 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval 'exec perl -S \$0 "\$@"'
- if \$running_under_some_shell;
-
- ! # $Id: kitsend.SH,v 3.0.1.1 1993/08/19 06:42:15 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
- #
- # $Log: kitsend.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:15 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:25 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: bin/manicheck.SH
- Prereq: 3.0
- *** bin/manicheck.SH.old Thu Aug 19 08:48:21 1993
- --- bin/manicheck.SH Thu Aug 19 08:48:21 1993
- ***************
- *** 6,12 ****
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! (echo "Can't find config.sh."; exit 1)
- fi
- . $TOP/config.sh
- ;;
- --- 6,12 ----
- elif test -f ../../../config.sh; then TOP=../../..;
- elif test -f ../../../../config.sh; then TOP=../../../..;
- else
- ! echo "Can't find config.sh."; exit 1
- fi
- . $TOP/config.sh
- ;;
- ***************
- *** 19,25 ****
- $startsh
- !GROK!THIS!
- $spitshell >>manicheck <<'!NO!SUBS!'
- ! # $Id: manicheck.SH,v 3.0 1993/08/18 12:04:02 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 19,25 ----
- $startsh
- !GROK!THIS!
- $spitshell >>manicheck <<'!NO!SUBS!'
- ! # $Id: manicheck.SH,v 3.0.1.1 1993/08/19 06:41:51 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 32,37 ****
- --- 32,40 ----
- # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
- #
- # $Log: manicheck.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:41:51 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:02 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- *** End of Patch 1 ***
-
- exit 0 # Just in case...
-