home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-08-20 | 27.6 KB | 1,095 lines |
- Newsgroups: comp.sources.misc
- From: Raphael Manfredi <ram@acri.fr>
- Subject: v39i034: dist-3.0 - Configure script generator and related tools, Patch02
- Message-ID: <1993Aug20.132201.22973@sparky.sterling.com>
- X-Md4-Signature: eb6147cc0ffd600ebc159d7a6317ceb1
- Sender: kent@sparky.sterling.com (Kent Landfield)
- Organization: Advanced Computer Research Institute, Lyon, France
- Date: Fri, 20 Aug 1993 13:22:01 GMT
- Approved: kent@sparky.sterling.com
-
- Submitted-by: Raphael Manfredi <ram@acri.fr>
- Posting-number: Volume 39, Issue 34
- Archive-name: dist-3.0/patch02
- 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 #: 2
- Priority: HIGH
- Subject: patch #1, continued
- Date: Thu Aug 19 08:51:05 MET DST 1993
- From: Raphael Manfredi <ram@acri.fr>
-
- Description:
- See patch #1.
-
- 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:
- Configure -ders
- make
- make install
- make install.man
-
- 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: 1
- 4c4
- < #define PATCHLEVEL 1
- ---
- > #define PATCHLEVEL 2
-
- Index: pat/patcil.SH
- Prereq: 3.0
- *** pat/patcil.SH.old Thu Aug 19 08:48:52 1993
- --- pat/patcil.SH Thu Aug 19 08:48:52 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 -i~ -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patcil.SH,v 3.0 1993/08/18 12:10:40 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -i~ -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patcil.SH,v 3.0.1.1 1993/08/19 06:42:33 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patcil.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:33 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:40 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patpost.SH
- Prereq: 3.0
- *** pat/patpost.SH.old Thu Aug 19 08:49:02 1993
- --- pat/patpost.SH Thu Aug 19 08:49:02 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: patpost.SH,v 3.0 1993/08/18 12:10:47 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patpost.SH,v 3.0.1.1 1993/08/19 06:42:41 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patpost.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:41 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:47 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: kit/manifake.SH
- Prereq: 3.0
- *** kit/manifake.SH.old Thu Aug 19 08:48:36 1993
- --- kit/manifake.SH Thu Aug 19 08:48:36 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 -i~ -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: manifake.SH,v 3.0 1993/08/18 12:04:32 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -i~ -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: manifake.SH,v 3.0.1.1 1993/08/19 06:42:18 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: manifake.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:18 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:32 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patsend.SH
- Prereq: 3.0
- *** pat/patsend.SH.old Thu Aug 19 08:49:03 1993
- --- pat/patsend.SH Thu Aug 19 08:49:03 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: patsend.SH,v 3.0 1993/08/18 12:10:49 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patsend.SH,v 3.0.1.1 1993/08/19 06:42:42 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patsend.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:42 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:49 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patdiff.SH
- Prereq: 3.0
- *** pat/patdiff.SH.old Thu Aug 19 08:48:55 1993
- --- pat/patdiff.SH Thu Aug 19 08:48:56 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: patdiff.SH,v 3.0 1993/08/18 12:10:43 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patdiff.SH,v 3.0.1.1 1993/08/19 06:42:35 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patdiff.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:35 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:43 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patbase.SH
- Prereq: 3.0
- *** pat/patbase.SH.old Thu Aug 19 08:48:51 1993
- --- pat/patbase.SH Thu Aug 19 08:48:51 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: patbase.SH,v 3.0 1993/08/18 12:10:38 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patbase.SH,v 3.0.1.1 1993/08/19 06:42:32 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patbase.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:32 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:38 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: bin/manilist.SH
- Prereq: 3.0
- *** bin/manilist.SH.old Thu Aug 19 08:48:22 1993
- --- bin/manilist.SH Thu Aug 19 08:48:22 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: manilist.SH,v 3.0 1993/08/18 12:04:03 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval 'exec perl -S \$0 "\$@"'
- if \$running_under_some_shell;
-
- ! # $Id: manilist.SH,v 3.0.1.1 1993/08/19 06:41:52 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: manilist.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:41:52 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:03 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patftp.SH
- Prereq: 3.0
- *** pat/patftp.SH.old Thu Aug 19 08:48:57 1993
- --- pat/patftp.SH Thu Aug 19 08:48:57 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: patftp.SH,v 3.0 1993/08/18 12:10:44 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patftp.SH,v 3.0.1.1 1993/08/19 06:42:36 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patftp.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:36 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:44 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: kit/makedist.SH
- Prereq: 3.0
- *** kit/makedist.SH.old Thu Aug 19 08:48:35 1993
- --- kit/makedist.SH Thu Aug 19 08:48:35 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
- ;;
- ***************
- *** 17,23 ****
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: makedist.SH,v 3.0 1993/08/18 12:04:28 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 17,23 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: makedist.SH,v 3.0.1.1 1993/08/19 06:42:17 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 28,33 ****
- --- 28,36 ----
- # of the source tree for dist 3.0.
- #
- # $Log: makedist.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:17 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:28 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: bin/packinit.SH
- Prereq: 3.0
- *** bin/packinit.SH.old Thu Aug 19 08:48:23 1993
- --- bin/packinit.SH Thu Aug 19 08:48:23 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: packinit.SH,v 3.0 1993/08/18 12:04:05 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: packinit.SH,v 3.0.1.1 1993/08/19 06:41:53 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: packinit.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:41:53 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:05 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patclean.SH
- Prereq: 3.0
- *** pat/patclean.SH.old Thu Aug 19 08:48:53 1993
- --- pat/patclean.SH Thu Aug 19 08:48:53 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: patclean.SH,v 3.0 1993/08/18 12:10:41 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patclean.SH,v 3.0.1.1 1993/08/19 06:42:33 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: patclean.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:33 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:41 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: mcon/makegloss.SH
- Prereq: 3.0
- *** mcon/makegloss.SH.old Thu Aug 19 08:48:40 1993
- --- mcon/makegloss.SH Thu Aug 19 08:48:40 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
- ;;
- ***************
- *** 22,28 ****
-
- !GROK!THIS!
- $spitshell >>makegloss <<'!NO!SUBS!'
- ! # $Id: makegloss.SH,v 3.0 1993/08/18 12:10:12 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 22,28 ----
-
- !GROK!THIS!
- $spitshell >>makegloss <<'!NO!SUBS!'
- ! # $Id: makegloss.SH,v 3.0.1.1 1993/08/19 06:42:21 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 35,40 ****
- --- 35,43 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: makegloss.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:21 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:12 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: jmake/bindex.SH
- Prereq: 3.0
- *** jmake/bindex.SH.old Thu Aug 19 08:48:28 1993
- --- jmake/bindex.SH Thu Aug 19 08:48:28 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
- ;;
- ***************
- *** 22,28 ****
- eval 'exec perl -S $0 "$@"'
- if $runnning_under_some_shell;
-
- ! # $Id: bindex.SH,v 3.0 1993/08/18 12:04:13 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 22,28 ----
- eval 'exec perl -S $0 "$@"'
- if $runnning_under_some_shell;
-
- ! # $Id: bindex.SH,v 3.0.1.1 1993/08/19 06:42:12 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # of the source tree for dist 3.0.
- #
- # $Log: bindex.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:12 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:13 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patname.SH
- Prereq: 3.0
- *** pat/patname.SH.old Thu Aug 19 08:49:01 1993
- --- pat/patname.SH Thu Aug 19 08:49:01 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: patname.SH,v 3.0 1993/08/18 12:10:46 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patname.SH,v 3.0.1.1 1993/08/19 06:42:40 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: patname.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:40 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:46 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: jmake/jmake.SH
- Prereq: 3.0
- *** jmake/jmake.SH.old Thu Aug 19 08:48:30 1993
- --- jmake/jmake.SH Thu Aug 19 08:48:30 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 \$runnning_under_some_shell;
-
- ! # $Id: jmake.SH,v 3.0 1993/08/18 12:04:17 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval 'exec perl -S \$0 "\$@"'
- if \$runnning_under_some_shell;
-
- ! # $Id: jmake.SH,v 3.0.1.1 1993/08/19 06:42:13 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: jmake.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:13 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:17 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patcol.SH
- Prereq: 3.0
- *** pat/patcol.SH.old Thu Aug 19 08:48:54 1993
- --- pat/patcol.SH Thu Aug 19 08:48:54 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: patcol.SH,v 3.0 1993/08/18 12:10:42 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: patcol.SH,v 3.0.1.1 1993/08/19 06:42:34 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # of the source tree for dist 3.0.
- #
- # $Log: patcol.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:34 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:42 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: install.SH
- Prereq: 3.0
- *** install.SH.old Thu Aug 19 08:48:26 1993
- --- install.SH Thu Aug 19 08:48:26 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
- # @(#) Installing script accepting bsd-style arguments
-
- ! # $Id: install.SH,v 3.0 1993/08/18 12:04:08 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 19,25 ----
- $startsh
- # @(#) Installing script accepting bsd-style arguments
-
- ! # $Id: install.SH,v 3.0.1.1 1993/08/19 06:42:10 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 30,35 ****
- --- 30,38 ----
- # of the source tree for dist 3.0.
- #
- # $Log: install.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:10 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:08 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/pat.SH
- Prereq: 3.0
- *** pat/pat.SH.old Thu Aug 19 08:48:50 1993
- --- pat/pat.SH Thu Aug 19 08:48:50 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: pat.SH,v 3.0 1993/08/18 12:10:36 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 20,26 ----
- eval "exec perl -S \$0 \$*"
- if \$running_under_some_shell;
-
- ! # $Id: pat.SH,v 3.0.1.1 1993/08/19 06:42:31 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 33,38 ****
- --- 33,41 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: pat.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:31 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:36 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: pat/patindex.SH
- Prereq: 3.0
- *** pat/patindex.SH.old Thu Aug 19 08:48:58 1993
- --- pat/patindex.SH Thu Aug 19 08:48:58 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
- ;;
- ***************
- *** 18,24 ****
- $spitshell >patindex <<!GROK!THIS!
- $startsh
-
- ! # $Id: patindex.SH,v 3.0 1993/08/18 12:10:44 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 18,24 ----
- $spitshell >patindex <<!GROK!THIS!
- $startsh
-
- ! # $Id: patindex.SH,v 3.0.1.1 1993/08/19 06:42:37 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 31,36 ****
- --- 31,39 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: patindex.SH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:37 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:10:44 ram
- # Baseline for dist 3.0 netwide release.
- #
-
- Index: kit/makeSH
- Prereq: 3.0
- *** kit/makeSH.old Thu Aug 19 08:48:34 1993
- --- kit/makeSH Thu Aug 19 08:48:34 1993
- ***************
- *** 1,6 ****
- #!/bin/sh
-
- ! # $Id: makeSH,v 3.0 1993/08/18 12:04:26 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- --- 1,6 ----
- #!/bin/sh
-
- ! # $Id: makeSH,v 3.0.1.1 1993/08/19 06:42:16 ram Exp $
- #
- # Copyright (c) 1991-1993, Raphael Manfredi
- #
- ***************
- *** 13,18 ****
- --- 13,21 ----
- # Original Author: Larry Wall <lwall@netlabs.com>
- #
- # $Log: makeSH,v $
- + # Revision 3.0.1.1 1993/08/19 06:42:16 ram
- + # patch1: leading config.sh searching was not aborting properly
- + #
- # Revision 3.0 1993/08/18 12:04:26 ram
- # Baseline for dist 3.0 netwide release.
- #
- ***************
- *** 33,39 ****
- 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
- ;;
- --- 36,42 ----
- 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
- ;;
-
- *** End of Patch 2 ***
-
- exit 0 # Just in case...
-