home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume39 / dist-3.0 / patch01 < prev    next >
Encoding:
Text File  |  1993-08-20  |  38.9 KB  |  1,389 lines

  1. Newsgroups: comp.sources.misc
  2. From: Raphael Manfredi <ram@acri.fr>
  3. Subject: v39i033:  dist-3.0 - Configure script generator and related tools, Patch01
  4. Message-ID: <1993Aug20.132039.22883@sparky.sterling.com>
  5. X-Md4-Signature: 5d2b8a957a9294d121d1c755d43cc27d
  6. Sender: kent@sparky.sterling.com (Kent Landfield)
  7. Organization: Advanced Computer Research Institute, Lyon, France
  8. Date: Fri, 20 Aug 1993 13:20:39 GMT
  9. Approved: kent@sparky.sterling.com
  10.  
  11. Submitted-by: Raphael Manfredi <ram@acri.fr>
  12. Posting-number: Volume 39, Issue 33
  13. Archive-name: dist-3.0/patch01
  14. Environment: UNIX, Perl, RCS
  15. Patch-To: dist-3.0: Volume 39, Issue 5-32
  16.  
  17. [The latest patch for dist version 3.0 is #2.]
  18.  
  19. System: dist version 3.0
  20. Patch #: 1
  21. Priority: HIGH
  22. Subject: leading config.sh searching was not aborting properly
  23. Date: Thu Aug 19 08:49:06 MET DST 1993
  24. From: Raphael Manfredi <ram@acri.fr>
  25.  
  26. Description:
  27.     Leading config.sh searching was not aborting properly... The test
  28.     was:
  29.  
  30.         case $CONFIG in
  31.         '')
  32.             if test -f config.sh; then TOP=.;
  33.             elif test -f ../config.sh; then TOP=..;
  34.             elif test -f ../../config.sh; then TOP=../..;
  35.             elif test -f ../../../config.sh; then TOP=../../..;
  36.             elif test -f ../../../../config.sh; then TOP=../../../..;
  37.             else
  38.                 (echo "Can't find config.sh."; exit 1)
  39.             fi
  40.             . $TOP/config.sh
  41.             ;;
  42.         esac
  43.  
  44.     And clearly, the parenthesis in the else clause are not needed.
  45.     All the .SH files have been updated in this patch, as well as
  46.     the files producing some like makeSH, mcon/U/Config_h.U and
  47.     jmake/files/Jmake.tmpl.
  48.  
  49.     Thanks to <serge@euler.berkeley.edu> for reporting this bug
  50.     to me almost immediately!!
  51.  
  52. Repeat-By:
  53.  
  54. Fix:    From rn, say "| patch -p -N -d DIR", where DIR is your dist source
  55.     directory.  Outside of rn, say "cd DIR; patch -p -N <thisarticle".
  56.     If you don't have the patch program, apply the following by hand,
  57.     or get patch (version 2.0, latest patchlevel).
  58.  
  59.     After patching:
  60.         *** DO NOTHING--INSTALL ALL PATCHES UP THROUGH #2 FIRST ***
  61.  
  62.     If patch indicates that patchlevel is the wrong version, you may need
  63.     to apply one or more previous patches, or the patch may already
  64.     have been applied.  See the patchlevel.h file to find out what has or
  65.     has not been applied.  In any event, don't continue with the patch.
  66.  
  67.     If you are missing previous patches (hah!) they can be obtained from me:
  68.  
  69.         Raphael Manfredi <ram@acri.fr>
  70.  
  71.     If you send a mail message of the following form it will greatly speed
  72.     processing:
  73.  
  74.         Subject: Command
  75.         @SH mailpatch PATH dist 3.0 LIST
  76.                ^ note the c
  77.  
  78.     where PATH is a return path FROM ME TO YOU either in Internet notation,
  79.     or in bang notation from some well-known host, and LIST is the number
  80.     of one or more patches you need, separated by spaces, commas, and/or
  81.     hyphens.  Saying 35- says everything from 35 to the end.
  82.  
  83.     To get some more detailed instructions, send me the following mail:
  84.  
  85.         Subject: Command
  86.         @SH mailhelp PATH
  87.  
  88.  
  89. Index: patchlevel.h
  90. Prereq: 0
  91. 4c4
  92. < #define PATCHLEVEL 0
  93. ---
  94. > #define PATCHLEVEL 1
  95.  
  96. Index: Makefile.SH
  97. *** Makefile.SH.old    Thu Aug 19 08:48:19 1993
  98. --- Makefile.SH    Thu Aug 19 08:48:19 1993
  99. ***************
  100. *** 1,5 ****
  101.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  102. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  103.   
  104.   case $CONFIG in
  105.   '')
  106. --- 1,5 ----
  107.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  108. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  109.   
  110.   case $CONFIG in
  111.   '')
  112. ***************
  113. *** 9,15 ****
  114.       elif test -f ../../../config.sh; then TOP=../../..;
  115.       elif test -f ../../../../config.sh; then TOP=../../../..;
  116.       else
  117. !         (echo "Can't find config.sh."; exit 1)
  118.       fi
  119.       . $TOP/config.sh
  120.       ;;
  121. --- 9,15 ----
  122.       elif test -f ../../../config.sh; then TOP=../../..;
  123.       elif test -f ../../../../config.sh; then TOP=../../../..;
  124.       else
  125. !         echo "Can't find config.sh."; exit 1
  126.       fi
  127.       . $TOP/config.sh
  128.       ;;
  129. ***************
  130. *** 51,62 ****
  131.   $spitshell >>Makefile <<'!NO!SUBS!'
  132.   ########################################################################
  133.   # Jmake rules for building libraries, programs, scripts, and data files
  134. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  135.   
  136.   ########################################################################
  137.   # Start of Jmakefile
  138.   
  139. ! # $X-Id: Jmakefile,v 2.8.1.1 91/10/18 10:09:07 ram Exp $
  140.   #
  141.   #  Copyright (c) 1991-1993, Raphael Manfredi
  142.   #  
  143. --- 51,62 ----
  144.   $spitshell >>Makefile <<'!NO!SUBS!'
  145.   ########################################################################
  146.   # Jmake rules for building libraries, programs, scripts, and data files
  147. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  148.   
  149.   ########################################################################
  150.   # Start of Jmakefile
  151.   
  152. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:03:53 ram Exp ram $
  153.   #
  154.   #  Copyright (c) 1991-1993, Raphael Manfredi
  155.   #  
  156. ***************
  157. *** 66,78 ****
  158.   #  that same Artistic Licence; a copy of which may be found at the root
  159.   #  of the source tree for dist 3.0.
  160.   #
  161. ! # $X-Log:    Jmakefile,v $
  162. ! # Revision 2.8.1.1  91/10/18  10:09:07  ram
  163. ! # patch7: tried to install a non-existent manual page for packinit
  164. ! # patch7: reported by Christian Bertin <bertin@acri.fr>
  165. ! #
  166. ! # Revision 2.8  91/07/08  13:22:56  ram
  167. ! # 3.0 alpha baseline.
  168.   #
  169.   
  170.   all::
  171. --- 66,74 ----
  172.   #  that same Artistic Licence; a copy of which may be found at the root
  173.   #  of the source tree for dist 3.0.
  174.   #
  175. ! # $X-Log: Jmakefile,v $
  176. ! # Revision 3.0  1993/08/18  12:03:53  ram
  177. ! # Baseline for dist 3.0 netwide release.
  178.   #
  179.   
  180.   all::
  181.  
  182. Index: bin/Makefile.SH
  183. *** bin/Makefile.SH.old    Thu Aug 19 08:48:20 1993
  184. --- bin/Makefile.SH    Thu Aug 19 08:48:20 1993
  185. ***************
  186. *** 1,5 ****
  187.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  188. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  189.   
  190.   case $CONFIG in
  191.   '')
  192. --- 1,5 ----
  193.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  194. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  195.   
  196.   case $CONFIG in
  197.   '')
  198. ***************
  199. *** 9,15 ****
  200.       elif test -f ../../../config.sh; then TOP=../../..;
  201.       elif test -f ../../../../config.sh; then TOP=../../../..;
  202.       else
  203. !         (echo "Can't find config.sh."; exit 1)
  204.       fi
  205.       . $TOP/config.sh
  206.       ;;
  207. --- 9,15 ----
  208.       elif test -f ../../../config.sh; then TOP=../../..;
  209.       elif test -f ../../../../config.sh; then TOP=../../../..;
  210.       else
  211. !         echo "Can't find config.sh."; exit 1
  212.       fi
  213.       . $TOP/config.sh
  214.       ;;
  215. ***************
  216. *** 52,63 ****
  217.   $spitshell >>Makefile <<'!NO!SUBS!'
  218.   ########################################################################
  219.   # Jmake rules for building libraries, programs, scripts, and data files
  220. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  221.   
  222.   ########################################################################
  223.   # Start of Jmakefile
  224.   
  225. ! # $X-Id: Jmakefile,v 2.8.1.1 91/10/18 10:09:07 ram Exp $
  226.   #
  227.   #  Copyright (c) 1991-1993, Raphael Manfredi
  228.   #  
  229. --- 52,63 ----
  230.   $spitshell >>Makefile <<'!NO!SUBS!'
  231.   ########################################################################
  232.   # Jmake rules for building libraries, programs, scripts, and data files
  233. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  234.   
  235.   ########################################################################
  236.   # Start of Jmakefile
  237.   
  238. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:00 ram Exp ram $
  239.   #
  240.   #  Copyright (c) 1991-1993, Raphael Manfredi
  241.   #  
  242. ***************
  243. *** 67,73 ****
  244.   #  that same Artistic Licence; a copy of which may be found at the root
  245.   #  of the source tree for dist 3.0.
  246.   #
  247. ! # $X-Log:    Jmakefile,v $
  248.   
  249.   BIN = packinit manicheck manilist
  250.   
  251. --- 67,76 ----
  252.   #  that same Artistic Licence; a copy of which may be found at the root
  253.   #  of the source tree for dist 3.0.
  254.   #
  255. ! # $X-Log: Jmakefile,v $
  256. ! # Revision 3.0  1993/08/18  12:04:00  ram
  257. ! # Baseline for dist 3.0 netwide release.
  258. ! #
  259.   
  260.   BIN = packinit manicheck manilist
  261.   
  262.  
  263. Index: jmake/Makefile.SH
  264. *** jmake/Makefile.SH.old    Thu Aug 19 08:48:27 1993
  265. --- jmake/Makefile.SH    Thu Aug 19 08:48:27 1993
  266. ***************
  267. *** 1,5 ****
  268.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  269. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  270.   
  271.   case $CONFIG in
  272.   '')
  273. --- 1,5 ----
  274.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  275. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  276.   
  277.   case $CONFIG in
  278.   '')
  279. ***************
  280. *** 9,15 ****
  281.       elif test -f ../../../config.sh; then TOP=../../..;
  282.       elif test -f ../../../../config.sh; then TOP=../../../..;
  283.       else
  284. !         (echo "Can't find config.sh."; exit 1)
  285.       fi
  286.       . $TOP/config.sh
  287.       ;;
  288. --- 9,15 ----
  289.       elif test -f ../../../config.sh; then TOP=../../..;
  290.       elif test -f ../../../../config.sh; then TOP=../../../..;
  291.       else
  292. !         echo "Can't find config.sh."; exit 1
  293.       fi
  294.       . $TOP/config.sh
  295.       ;;
  296. ***************
  297. *** 53,64 ****
  298.   $spitshell >>Makefile <<'!NO!SUBS!'
  299.   ########################################################################
  300.   # Jmake rules for building libraries, programs, scripts, and data files
  301. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  302.   
  303.   ########################################################################
  304.   # Start of Jmakefile
  305.   
  306. ! # $X-Id: Jmakefile,v 2.8.1.1 91/07/14 13:34:08 ram Exp $
  307.   #
  308.   #  Copyright (c) 1991-1993, Raphael Manfredi
  309.   #  
  310. --- 53,64 ----
  311.   $spitshell >>Makefile <<'!NO!SUBS!'
  312.   ########################################################################
  313.   # Jmake rules for building libraries, programs, scripts, and data files
  314. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  315.   
  316.   ########################################################################
  317.   # Start of Jmakefile
  318.   
  319. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:09 ram Exp ram $
  320.   #
  321.   #  Copyright (c) 1991-1993, Raphael Manfredi
  322.   #  
  323. ***************
  324. *** 68,79 ****
  325.   #  that same Artistic Licence; a copy of which may be found at the root
  326.   #  of the source tree for dist 3.0.
  327.   #
  328. ! # $X-Log:    Jmakefile,v $
  329. ! # Revision 2.8.1.1  91/07/14  13:34:08  ram
  330. ! # patch1: bindex was wrongly installed as a public executable
  331. ! #
  332. ! # Revision 2.8  91/07/08  13:27:23  ram
  333. ! # 3.0 alpha baseline.
  334.   #
  335.   
  336.   all:: Index
  337. --- 68,76 ----
  338.   #  that same Artistic Licence; a copy of which may be found at the root
  339.   #  of the source tree for dist 3.0.
  340.   #
  341. ! # $X-Log: Jmakefile,v $
  342. ! # Revision 3.0  1993/08/18  12:04:09  ram
  343. ! # Baseline for dist 3.0 netwide release.
  344.   #
  345.   
  346.   all:: Index
  347.  
  348. Index: kit/Makefile.SH
  349. *** kit/Makefile.SH.old    Thu Aug 19 08:48:32 1993
  350. --- kit/Makefile.SH    Thu Aug 19 08:48:32 1993
  351. ***************
  352. *** 1,5 ****
  353.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  354. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  355.   
  356.   case $CONFIG in
  357.   '')
  358. --- 1,5 ----
  359.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  360. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  361.   
  362.   case $CONFIG in
  363.   '')
  364. ***************
  365. *** 9,15 ****
  366.       elif test -f ../../../config.sh; then TOP=../../..;
  367.       elif test -f ../../../../config.sh; then TOP=../../../..;
  368.       else
  369. !         (echo "Can't find config.sh."; exit 1)
  370.       fi
  371.       . $TOP/config.sh
  372.       ;;
  373. --- 9,15 ----
  374.       elif test -f ../../../config.sh; then TOP=../../..;
  375.       elif test -f ../../../../config.sh; then TOP=../../../..;
  376.       else
  377. !         echo "Can't find config.sh."; exit 1
  378.       fi
  379.       . $TOP/config.sh
  380.       ;;
  381. ***************
  382. *** 52,63 ****
  383.   $spitshell >>Makefile <<'!NO!SUBS!'
  384.   ########################################################################
  385.   # Jmake rules for building libraries, programs, scripts, and data files
  386. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  387.   
  388.   ########################################################################
  389.   # Start of Jmakefile
  390.   
  391. ! # $X-Id: Jmakefile,v 2.8 91/07/08 13:27:57 ram Exp $
  392.   #
  393.   #  Copyright (c) 1991-1993, Raphael Manfredi
  394.   #  
  395. --- 52,63 ----
  396.   $spitshell >>Makefile <<'!NO!SUBS!'
  397.   ########################################################################
  398.   # Jmake rules for building libraries, programs, scripts, and data files
  399. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  400.   
  401.   ########################################################################
  402.   # Start of Jmakefile
  403.   
  404. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:21 ram Exp ram $
  405.   #
  406.   #  Copyright (c) 1991-1993, Raphael Manfredi
  407.   #  
  408. ***************
  409. *** 67,75 ****
  410.   #  that same Artistic Licence; a copy of which may be found at the root
  411.   #  of the source tree for dist 3.0.
  412.   #
  413. ! # $X-Log:    Jmakefile,v $
  414. ! # Revision 2.8  91/07/08  13:27:57  ram
  415. ! # 3.0 alpha baseline.
  416.   #
  417.   
  418.   SCRIPT_SH = makedist manifake kitsend
  419. --- 67,75 ----
  420.   #  that same Artistic Licence; a copy of which may be found at the root
  421.   #  of the source tree for dist 3.0.
  422.   #
  423. ! # $X-Log: Jmakefile,v $
  424. ! # Revision 3.0  1993/08/18  12:04:21  ram
  425. ! # Baseline for dist 3.0 netwide release.
  426.   #
  427.   
  428.   SCRIPT_SH = makedist manifake kitsend
  429.  
  430. Index: lib/Makefile.SH
  431. *** lib/Makefile.SH.old    Thu Aug 19 08:48:37 1993
  432. --- lib/Makefile.SH    Thu Aug 19 08:48:37 1993
  433. ***************
  434. *** 1,5 ****
  435.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  436. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  437.   
  438.   case $CONFIG in
  439.   '')
  440. --- 1,5 ----
  441.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  442. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  443.   
  444.   case $CONFIG in
  445.   '')
  446. ***************
  447. *** 9,15 ****
  448.       elif test -f ../../../config.sh; then TOP=../../..;
  449.       elif test -f ../../../../config.sh; then TOP=../../../..;
  450.       else
  451. !         (echo "Can't find config.sh."; exit 1)
  452.       fi
  453.       . $TOP/config.sh
  454.       ;;
  455. --- 9,15 ----
  456.       elif test -f ../../../config.sh; then TOP=../../..;
  457.       elif test -f ../../../../config.sh; then TOP=../../../..;
  458.       else
  459. !         echo "Can't find config.sh."; exit 1
  460.       fi
  461.       . $TOP/config.sh
  462.       ;;
  463. ***************
  464. *** 45,56 ****
  465.   $spitshell >>Makefile <<'!NO!SUBS!'
  466.   ########################################################################
  467.   # Jmake rules for building libraries, programs, scripts, and data files
  468. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  469.   
  470.   ########################################################################
  471.   # Start of Jmakefile
  472.   
  473. ! # $X-Id: Jmakefile,v 2.8.1.1 91/10/18 10:09:07 ram Exp $
  474.   #
  475.   #  Copyright (c) 1991-1993, Raphael Manfredi
  476.   #  
  477. --- 45,56 ----
  478.   $spitshell >>Makefile <<'!NO!SUBS!'
  479.   ########################################################################
  480.   # Jmake rules for building libraries, programs, scripts, and data files
  481. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  482.   
  483.   ########################################################################
  484.   # Start of Jmakefile
  485.   
  486. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:34 ram Exp ram $
  487.   #
  488.   #  Copyright (c) 1991-1993, Raphael Manfredi
  489.   #  
  490. ***************
  491. *** 60,66 ****
  492.   #  that same Artistic Licence; a copy of which may be found at the root
  493.   #  of the source tree for dist 3.0.
  494.   #
  495. ! # $X-Log:    Jmakefile,v $
  496.   
  497.   FILES = errnolist.a errnolist.mk
  498.   FILES_SH = errnolist makedepend makedir
  499. --- 60,69 ----
  500.   #  that same Artistic Licence; a copy of which may be found at the root
  501.   #  of the source tree for dist 3.0.
  502.   #
  503. ! # $X-Log: Jmakefile,v $
  504. ! # Revision 3.0  1993/08/18  12:04:34  ram
  505. ! # Baseline for dist 3.0 netwide release.
  506. ! #
  507.   
  508.   FILES = errnolist.a errnolist.mk
  509.   FILES_SH = errnolist makedepend makedir
  510.  
  511. Index: mcon/Makefile.SH
  512. *** mcon/Makefile.SH.old    Thu Aug 19 08:48:38 1993
  513. --- mcon/Makefile.SH    Thu Aug 19 08:48:38 1993
  514. ***************
  515. *** 1,5 ****
  516.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  517. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  518.   
  519.   case $CONFIG in
  520.   '')
  521. --- 1,5 ----
  522.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  523. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  524.   
  525.   case $CONFIG in
  526.   '')
  527. ***************
  528. *** 9,15 ****
  529.       elif test -f ../../../config.sh; then TOP=../../..;
  530.       elif test -f ../../../../config.sh; then TOP=../../../..;
  531.       else
  532. !         (echo "Can't find config.sh."; exit 1)
  533.       fi
  534.       . $TOP/config.sh
  535.       ;;
  536. --- 9,15 ----
  537.       elif test -f ../../../config.sh; then TOP=../../..;
  538.       elif test -f ../../../../config.sh; then TOP=../../../..;
  539.       else
  540. !         echo "Can't find config.sh."; exit 1
  541.       fi
  542.       . $TOP/config.sh
  543.       ;;
  544. ***************
  545. *** 51,62 ****
  546.   $spitshell >>Makefile <<'!NO!SUBS!'
  547.   ########################################################################
  548.   # Jmake rules for building libraries, programs, scripts, and data files
  549. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  550.   
  551.   ########################################################################
  552.   # Start of Jmakefile
  553.   
  554. ! # $X-Id: Jmakefile,v 2.8 91/07/08 13:28:49 ram Exp $
  555.   #
  556.   #  Copyright (c) 1991-1993, Raphael Manfredi
  557.   #  
  558. --- 51,62 ----
  559.   $spitshell >>Makefile <<'!NO!SUBS!'
  560.   ########################################################################
  561.   # Jmake rules for building libraries, programs, scripts, and data files
  562. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  563.   
  564.   ########################################################################
  565.   # Start of Jmakefile
  566.   
  567. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:04:40 ram Exp ram $
  568.   #
  569.   #  Copyright (c) 1991-1993, Raphael Manfredi
  570.   #  
  571. ***************
  572. *** 66,74 ****
  573.   #  that same Artistic Licence; a copy of which may be found at the root
  574.   #  of the source tree for dist 3.0.
  575.   #
  576. ! # $X-Log:    Jmakefile,v $
  577. ! # Revision 2.8  91/07/08  13:28:49  ram
  578. ! # 3.0 alpha baseline.
  579.   #
  580.   
  581.   all:: Glossary
  582. --- 66,74 ----
  583.   #  that same Artistic Licence; a copy of which may be found at the root
  584.   #  of the source tree for dist 3.0.
  585.   #
  586. ! # $X-Log: Jmakefile,v $
  587. ! # Revision 3.0  1993/08/18  12:04:40  ram
  588. ! # Baseline for dist 3.0 netwide release.
  589.   #
  590.   
  591.   all:: Glossary
  592.  
  593. Index: mcon/man/Makefile.SH
  594. *** mcon/man/Makefile.SH.old    Thu Aug 19 08:48:41 1993
  595. --- mcon/man/Makefile.SH    Thu Aug 19 08:48:41 1993
  596. ***************
  597. *** 1,5 ****
  598.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  599. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  600.   
  601.   case $CONFIG in
  602.   '')
  603. --- 1,5 ----
  604.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  605. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  606.   
  607.   case $CONFIG in
  608.   '')
  609. ***************
  610. *** 9,15 ****
  611.       elif test -f ../../../config.sh; then TOP=../../..;
  612.       elif test -f ../../../../config.sh; then TOP=../../../..;
  613.       else
  614. !         (echo "Can't find config.sh."; exit 1)
  615.       fi
  616.       . $TOP/config.sh
  617.       ;;
  618. --- 9,15 ----
  619.       elif test -f ../../../config.sh; then TOP=../../..;
  620.       elif test -f ../../../../config.sh; then TOP=../../../..;
  621.       else
  622. !         echo "Can't find config.sh."; exit 1
  623.       fi
  624.       . $TOP/config.sh
  625.       ;;
  626. ***************
  627. *** 59,70 ****
  628.   $spitshell >>Makefile <<'!NO!SUBS!'
  629.   ########################################################################
  630.   # Jmake rules for building libraries, programs, scripts, and data files
  631. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  632.   
  633.   ########################################################################
  634.   # Start of Jmakefile
  635.   
  636. ! # $X-Id: Jmakefile,v 2.9 92/07/14 16:49:04 ram Exp $
  637.   #
  638.   #  Copyright (c) 1991-1993, Raphael Manfredi
  639.   #  
  640. --- 59,70 ----
  641.   $spitshell >>Makefile <<'!NO!SUBS!'
  642.   ########################################################################
  643.   # Jmake rules for building libraries, programs, scripts, and data files
  644. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  645.   
  646.   ########################################################################
  647.   # Start of Jmakefile
  648.   
  649. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:10:13 ram Exp ram $
  650.   #
  651.   #  Copyright (c) 1991-1993, Raphael Manfredi
  652.   #  
  653. ***************
  654. *** 74,82 ****
  655.   #  that same Artistic Licence; a copy of which may be found at the root
  656.   #  of the source tree for dist 3.0.
  657.   #
  658. ! # $X-Log:    Jmakefile,v $
  659. ! # Revision 2.9  92/07/14  16:49:04  ram
  660. ! # 3.0 beta baseline.
  661.   #
  662.   
  663.   MPAGES = metaconfig.$(L) metalint.$(L) metaxref.$(L)
  664. --- 74,82 ----
  665.   #  that same Artistic Licence; a copy of which may be found at the root
  666.   #  of the source tree for dist 3.0.
  667.   #
  668. ! # $X-Log: Jmakefile,v $
  669. ! # Revision 3.0  1993/08/18  12:10:13  ram
  670. ! # Baseline for dist 3.0 netwide release.
  671.   #
  672.   
  673.   MPAGES = metaconfig.$(L) metalint.$(L) metaxref.$(L)
  674.  
  675. Index: pat/Makefile.SH
  676. *** pat/Makefile.SH.old    Thu Aug 19 08:48:49 1993
  677. --- pat/Makefile.SH    Thu Aug 19 08:48:49 1993
  678. ***************
  679. *** 1,5 ****
  680.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  681. ! : $X-Id: Jmake.tmpl,v 2.8.1.2 91/11/18 13:22:54 ram Exp $
  682.   
  683.   case $CONFIG in
  684.   '')
  685. --- 1,5 ----
  686.   : Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL0]
  687. ! : $X-Id: Jmake.tmpl,v 3.0 1993/08/18 12:04:16 ram Exp ram $
  688.   
  689.   case $CONFIG in
  690.   '')
  691. ***************
  692. *** 9,15 ****
  693.       elif test -f ../../../config.sh; then TOP=../../..;
  694.       elif test -f ../../../../config.sh; then TOP=../../../..;
  695.       else
  696. !         (echo "Can't find config.sh."; exit 1)
  697.       fi
  698.       . $TOP/config.sh
  699.       ;;
  700. --- 9,15 ----
  701.       elif test -f ../../../config.sh; then TOP=../../..;
  702.       elif test -f ../../../../config.sh; then TOP=../../../..;
  703.       else
  704. !         echo "Can't find config.sh."; exit 1
  705.       fi
  706.       . $TOP/config.sh
  707.       ;;
  708. ***************
  709. *** 47,58 ****
  710.   $spitshell >>Makefile <<'!NO!SUBS!'
  711.   ########################################################################
  712.   # Jmake rules for building libraries, programs, scripts, and data files
  713. ! # $X-Id: Jmake.rules,v 2.8.1.4 91/11/18 13:19:07 ram Exp $
  714.   
  715.   ########################################################################
  716.   # Start of Jmakefile
  717.   
  718. ! # $X-Id: Jmakefile,v 2.8.1.2 91/11/03 16:33:16 ram Exp $
  719.   #
  720.   #  Copyright (c) 1991-1993, Raphael Manfredi
  721.   #  
  722. --- 47,58 ----
  723.   $spitshell >>Makefile <<'!NO!SUBS!'
  724.   ########################################################################
  725.   # Jmake rules for building libraries, programs, scripts, and data files
  726. ! # $X-Id: Jmake.rules,v 3.0 1993/08/18 12:04:14 ram Exp ram $
  727.   
  728.   ########################################################################
  729.   # Start of Jmakefile
  730.   
  731. ! # $X-Id: Jmakefile,v 3.0 1993/08/18 12:10:32 ram Exp ram $
  732.   #
  733.   #  Copyright (c) 1991-1993, Raphael Manfredi
  734.   #  
  735. ***************
  736. *** 62,76 ****
  737.   #  that same Artistic Licence; a copy of which may be found at the root
  738.   #  of the source tree for dist 3.0.
  739.   #
  740. ! # $X-Log:    Jmakefile,v $
  741. ! # Revision 2.8.1.2  91/11/03  16:33:16  ram
  742. ! # patch7: makefile made more generic by using new improved expand
  743. ! #
  744. ! # Revision 2.8.1.1  91/07/14  13:01:31  ram
  745. ! # patch1: added manual page for pat tools
  746. ! #
  747. ! # Revision 2.8  91/07/08  13:26:08  ram
  748. ! # 3.0 alpha baseline.
  749.   #
  750.   
  751.   BASE = // cil base diff make clean col name ftp send index post
  752. --- 62,70 ----
  753.   #  that same Artistic Licence; a copy of which may be found at the root
  754.   #  of the source tree for dist 3.0.
  755.   #
  756. ! # $X-Log: Jmakefile,v $
  757. ! # Revision 3.0  1993/08/18  12:10:32  ram
  758. ! # Baseline for dist 3.0 netwide release.
  759.   #
  760.   
  761.   BASE = // cil base diff make clean col name ftp send index post
  762.  
  763. Index: mcon/man/mconfig.SH
  764. Prereq: 3.0
  765. *** mcon/man/mconfig.SH.old    Thu Aug 19 08:48:42 1993
  766. --- mcon/man/mconfig.SH    Thu Aug 19 08:48:43 1993
  767. ***************
  768. *** 6,12 ****
  769.       elif test -f ../../../config.sh; then TOP=../../..;
  770.       elif test -f ../../../../config.sh; then TOP=../../../..;
  771.       else
  772. !         (echo "Can't find config.sh."; exit 1)
  773.       fi
  774.       . $TOP/config.sh
  775.       ;;
  776. --- 6,12 ----
  777.       elif test -f ../../../config.sh; then TOP=../../..;
  778.       elif test -f ../../../../config.sh; then TOP=../../../..;
  779.       else
  780. !         echo "Can't find config.sh."; exit 1
  781.       fi
  782.       . $TOP/config.sh
  783.       ;;
  784. ***************
  785. *** 20,26 ****
  786.   .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
  787.   ''' @(#) Manual page for metaconfig
  788.   '''
  789. ! ''' $Id: mconfig.SH,v 3.0 1993/08/18 12:10:14 ram Exp $
  790.   '''
  791.   '''  Copyright (c) 1991-1993, Raphael Manfredi
  792.   '''  
  793. --- 20,26 ----
  794.   .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
  795.   ''' @(#) Manual page for metaconfig
  796.   '''
  797. ! ''' $Id: mconfig.SH,v 3.0.1.1 1993/08/19 06:42:23 ram Exp $
  798.   '''
  799.   '''  Copyright (c) 1991-1993, Raphael Manfredi
  800.   '''  
  801. ***************
  802. *** 31,36 ****
  803. --- 31,39 ----
  804.   '''  of the source tree for dist 3.0.
  805.   '''
  806.   ''' $Log: mconfig.SH,v $
  807. + ''' Revision 3.0.1.1  1993/08/19  06:42:23  ram
  808. + ''' patch1: leading config.sh searching was not aborting properly
  809. + '''
  810.   ''' Revision 3.0  1993/08/18  12:10:14  ram
  811.   ''' Baseline for dist 3.0 netwide release.
  812.   '''
  813. ***************
  814. *** 561,567 ****
  815.       elif test -f ../../../config.sh; then TOP=../../..;
  816.       elif test -f ../../../../config.sh; then TOP=../../../..;
  817.       else
  818. !         (echo "Can't find config.sh."; exit 1)
  819.       fi
  820.       . \$TOP/config.sh
  821.       ;;
  822. --- 564,570 ----
  823.       elif test -f ../../../config.sh; then TOP=../../..;
  824.       elif test -f ../../../../config.sh; then TOP=../../../..;
  825.       else
  826. !         echo "Can't find config.sh."; exit 1
  827.       fi
  828.       . \$TOP/config.sh
  829.       ;;
  830. ***************
  831. *** 648,654 ****
  832.       elif test -f ../../../config.sh; then TOP=../../..;
  833.       elif test -f ../../../../config.sh; then TOP=../../../..;
  834.       else
  835. !         (echo "Can't find config.sh."; exit 1)
  836.       fi
  837.       . \$TOP/config.sh
  838.       ;;
  839. --- 651,657 ----
  840.       elif test -f ../../../config.sh; then TOP=../../..;
  841.       elif test -f ../../../../config.sh; then TOP=../../../..;
  842.       else
  843. !         echo "Can't find config.sh."; exit 1
  844.       fi
  845.       . \$TOP/config.sh
  846.       ;;
  847. ***************
  848. *** 698,704 ****
  849.       elif test -f ../../../config.sh; then TOP=../../..;
  850.       elif test -f ../../../../config.sh; then TOP=../../../..;
  851.       else
  852. !         (echo "Can't find config.sh."; exit 1)
  853.       fi
  854.       . \$TOP/config.sh
  855.       ;;
  856. --- 701,707 ----
  857.       elif test -f ../../../config.sh; then TOP=../../..;
  858.       elif test -f ../../../../config.sh; then TOP=../../../..;
  859.       else
  860. !         echo "Can't find config.sh."; exit 1
  861.       fi
  862.       . \$TOP/config.sh
  863.       ;;
  864.  
  865. Index: mcon/mconfig.SH
  866. Prereq: 3.0
  867. *** mcon/mconfig.SH.old    Thu Aug 19 08:48:46 1993
  868. --- mcon/mconfig.SH    Thu Aug 19 08:48:46 1993
  869. ***************
  870. *** 6,12 ****
  871.       elif test -f ../../../config.sh; then TOP=../../..;
  872.       elif test -f ../../../../config.sh; then TOP=../../../..;
  873.       else
  874. !         (echo "Can't find config.sh."; exit 1)
  875.       fi
  876.       . $TOP/config.sh
  877.       ;;
  878. --- 6,12 ----
  879.       elif test -f ../../../config.sh; then TOP=../../..;
  880.       elif test -f ../../../../config.sh; then TOP=../../../..;
  881.       else
  882. !         echo "Can't find config.sh."; exit 1
  883.       fi
  884.       . $TOP/config.sh
  885.       ;;
  886. ***************
  887. *** 20,26 ****
  888.       eval "exec perl -S \$0 \$*"
  889.           if \$running_under_some_shell;
  890.   
  891. ! # $Id: mconfig.SH,v 3.0 1993/08/18 12:10:17 ram Exp $
  892.   #
  893.   #  Copyright (c) 1991-1993, Raphael Manfredi
  894.   #  
  895. --- 20,26 ----
  896.       eval "exec perl -S \$0 \$*"
  897.           if \$running_under_some_shell;
  898.   
  899. ! # $Id: mconfig.SH,v 3.0.1.1 1993/08/19 06:42:26 ram Exp $
  900.   #
  901.   #  Copyright (c) 1991-1993, Raphael Manfredi
  902.   #  
  903. ***************
  904. *** 34,39 ****
  905. --- 34,42 ----
  906.   # Key Contributor: Harlan Stenn <harlan@mumps.pfcs.com>
  907.   #
  908.   # $Log: mconfig.SH,v $
  909. + # Revision 3.0.1.1  1993/08/19  06:42:26  ram
  910. + # patch1: leading config.sh searching was not aborting properly
  911. + #
  912.   # Revision 3.0  1993/08/18  12:10:17  ram
  913.   # Baseline for dist 3.0 netwide release.
  914.   #
  915.  
  916. Index: mcon/man/mxref.SH
  917. Prereq: 3.0
  918. *** mcon/man/mxref.SH.old    Thu Aug 19 08:48:45 1993
  919. --- mcon/man/mxref.SH    Thu Aug 19 08:48:45 1993
  920. ***************
  921. *** 6,12 ****
  922.       elif test -f ../../../config.sh; then TOP=../../..;
  923.       elif test -f ../../../../config.sh; then TOP=../../../..;
  924.       else
  925. !         (echo "Can't find config.sh."; exit 1)
  926.       fi
  927.       . $TOP/config.sh
  928.       ;;
  929. --- 6,12 ----
  930.       elif test -f ../../../config.sh; then TOP=../../..;
  931.       elif test -f ../../../../config.sh; then TOP=../../../..;
  932.       else
  933. !         echo "Can't find config.sh."; exit 1
  934.       fi
  935.       . $TOP/config.sh
  936.       ;;
  937. ***************
  938. *** 20,26 ****
  939.   .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
  940.   ''' @(#) Manual page for metaxref
  941.   '''
  942. ! ''' $Id: mxref.SH,v 3.0 1993/08/18 12:10:15 ram Exp $
  943.   '''
  944.   '''  Copyright (c) 1991-1993, Raphael Manfredi
  945.   '''  
  946. --- 20,26 ----
  947.   .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
  948.   ''' @(#) Manual page for metaxref
  949.   '''
  950. ! ''' $Id: mxref.SH,v 3.0.1.1 1993/08/19 06:42:25 ram Exp $
  951.   '''
  952.   '''  Copyright (c) 1991-1993, Raphael Manfredi
  953.   '''  
  954. ***************
  955. *** 31,36 ****
  956. --- 31,39 ----
  957.   '''  of the source tree for dist 3.0.
  958.   '''
  959.   ''' $Log: mxref.SH,v $
  960. + ''' Revision 3.0.1.1  1993/08/19  06:42:25  ram
  961. + ''' patch1: leading config.sh searching was not aborting properly
  962. + '''
  963.   ''' Revision 3.0  1993/08/18  12:10:15  ram
  964.   ''' Baseline for dist 3.0 netwide release.
  965.   '''
  966.  
  967. Index: mcon/mxref.SH
  968. Prereq: 3.0
  969. *** mcon/mxref.SH.old    Thu Aug 19 08:48:48 1993
  970. --- mcon/mxref.SH    Thu Aug 19 08:48:48 1993
  971. ***************
  972. *** 6,12 ****
  973.       elif test -f ../../../config.sh; then TOP=../../..;
  974.       elif test -f ../../../../config.sh; then TOP=../../../..;
  975.       else
  976. !         (echo "Can't find config.sh."; exit 1)
  977.       fi
  978.       . $TOP/config.sh
  979.       ;;
  980. --- 6,12 ----
  981.       elif test -f ../../../config.sh; then TOP=../../..;
  982.       elif test -f ../../../../config.sh; then TOP=../../../..;
  983.       else
  984. !         echo "Can't find config.sh."; exit 1
  985.       fi
  986.       . $TOP/config.sh
  987.       ;;
  988. ***************
  989. *** 20,26 ****
  990.       eval "exec perl -S \$0 \$*"
  991.           if \$running_under_some_shell;
  992.   
  993. ! # $Id: mxref.SH,v 3.0 1993/08/18 12:10:18 ram Exp $
  994.   #
  995.   #  Copyright (c) 1991-1993, Raphael Manfredi
  996.   #  
  997. --- 20,26 ----
  998.       eval "exec perl -S \$0 \$*"
  999.           if \$running_under_some_shell;
  1000.   
  1001. ! # $Id: mxref.SH,v 3.0.1.1 1993/08/19 06:42:27 ram Exp $
  1002.   #
  1003.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1004.   #  
  1005. ***************
  1006. *** 33,38 ****
  1007. --- 33,41 ----
  1008.   # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
  1009.   #
  1010.   # $Log: mxref.SH,v $
  1011. + # Revision 3.0.1.1  1993/08/19  06:42:27  ram
  1012. + # patch1: leading config.sh searching was not aborting properly
  1013. + #
  1014.   # Revision 3.0  1993/08/18  12:10:18  ram
  1015.   # Baseline for dist 3.0 netwide release.
  1016.   #
  1017.  
  1018. Index: mcon/man/mlint.SH
  1019. Prereq: 3.0
  1020. *** mcon/man/mlint.SH.old    Thu Aug 19 08:48:44 1993
  1021. --- mcon/man/mlint.SH    Thu Aug 19 08:48:44 1993
  1022. ***************
  1023. *** 6,12 ****
  1024.       elif test -f ../../../config.sh; then TOP=../../..;
  1025.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1026.       else
  1027. !         (echo "Can't find config.sh."; exit 1)
  1028.       fi
  1029.       . $TOP/config.sh
  1030.       ;;
  1031. --- 6,12 ----
  1032.       elif test -f ../../../config.sh; then TOP=../../..;
  1033.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1034.       else
  1035. !         echo "Can't find config.sh."; exit 1
  1036.       fi
  1037.       . $TOP/config.sh
  1038.       ;;
  1039. ***************
  1040. *** 20,26 ****
  1041.   .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
  1042.   ''' @(#) Manual page for metalint
  1043.   '''
  1044. ! ''' $Id: mlint.SH,v 3.0 1993/08/18 12:10:15 ram Exp $
  1045.   '''
  1046.   '''  Copyright (c) 1991-1993, Raphael Manfredi
  1047.   '''  
  1048. --- 20,26 ----
  1049.   .TH METACONFIG $manext "Version $VERSION PL$PATCHLEVEL"
  1050.   ''' @(#) Manual page for metalint
  1051.   '''
  1052. ! ''' $Id: mlint.SH,v 3.0.1.1 1993/08/19 06:42:24 ram Exp $
  1053.   '''
  1054.   '''  Copyright (c) 1991-1993, Raphael Manfredi
  1055.   '''  
  1056. ***************
  1057. *** 31,36 ****
  1058. --- 31,39 ----
  1059.   '''  of the source tree for dist 3.0.
  1060.   '''
  1061.   ''' $Log: mlint.SH,v $
  1062. + ''' Revision 3.0.1.1  1993/08/19  06:42:24  ram
  1063. + ''' patch1: leading config.sh searching was not aborting properly
  1064. + '''
  1065.   ''' Revision 3.0  1993/08/18  12:10:15  ram
  1066.   ''' Baseline for dist 3.0 netwide release.
  1067.   '''
  1068.  
  1069. Index: mcon/mlint.SH
  1070. Prereq: 3.0
  1071. *** mcon/mlint.SH.old    Thu Aug 19 08:48:47 1993
  1072. --- mcon/mlint.SH    Thu Aug 19 08:48:47 1993
  1073. ***************
  1074. *** 6,12 ****
  1075.       elif test -f ../../../config.sh; then TOP=../../..;
  1076.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1077.       else
  1078. !         (echo "Can't find config.sh."; exit 1)
  1079.       fi
  1080.       . $TOP/config.sh
  1081.       ;;
  1082. --- 6,12 ----
  1083.       elif test -f ../../../config.sh; then TOP=../../..;
  1084.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1085.       else
  1086. !         echo "Can't find config.sh."; exit 1
  1087.       fi
  1088.       . $TOP/config.sh
  1089.       ;;
  1090. ***************
  1091. *** 20,26 ****
  1092.       eval "exec perl -S \$0 \$*"
  1093.           if \$running_under_some_shell;
  1094.   
  1095. ! # $Id: mlint.SH,v 3.0 1993/08/18 12:10:17 ram Exp $
  1096.   #
  1097.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1098.   #  
  1099. --- 20,26 ----
  1100.       eval "exec perl -S \$0 \$*"
  1101.           if \$running_under_some_shell;
  1102.   
  1103. ! # $Id: mlint.SH,v 3.0.1.1 1993/08/19 06:42:27 ram Exp $
  1104.   #
  1105.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1106.   #  
  1107. ***************
  1108. *** 33,38 ****
  1109. --- 33,41 ----
  1110.   # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
  1111.   #
  1112.   # $Log: mlint.SH,v $
  1113. + # Revision 3.0.1.1  1993/08/19  06:42:27  ram
  1114. + # patch1: leading config.sh searching was not aborting properly
  1115. + #
  1116.   # Revision 3.0  1993/08/18  12:10:17  ram
  1117.   # Baseline for dist 3.0 netwide release.
  1118.   #
  1119.  
  1120. Index: mcon/U/Config_h.U
  1121. Prereq: 3.0
  1122. *** mcon/U/Config_h.U.old    Thu Aug 19 08:48:39 1993
  1123. --- mcon/U/Config_h.U    Thu Aug 19 08:48:39 1993
  1124. ***************
  1125. *** 1,4 ****
  1126. ! ?RCS: $Id: Config_h.U,v 3.0 1993/08/18 12:04:47 ram Exp $
  1127.   ?RCS:
  1128.   ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
  1129.   ?RCS: 
  1130. --- 1,4 ----
  1131. ! ?RCS: $Id: Config_h.U,v 3.0.1.1 1993/08/19 06:42:20 ram Exp $
  1132.   ?RCS:
  1133.   ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
  1134.   ?RCS: 
  1135. ***************
  1136. *** 9,14 ****
  1137. --- 9,17 ----
  1138.   ?RCS: of the source tree for dist 3.0.
  1139.   ?RCS:
  1140.   ?RCS: $Log: Config_h.U,v $
  1141. + ?RCS: Revision 3.0.1.1  1993/08/19  06:42:20  ram
  1142. + ?RCS: patch1: leading config.sh searching was not aborting properly
  1143. + ?RCS:
  1144.   ?RCS: Revision 3.0  1993/08/18  12:04:47  ram
  1145.   ?RCS: Baseline for dist 3.0 netwide release.
  1146.   ?RCS:
  1147. ***************
  1148. *** 37,43 ****
  1149.       elif test -f ../../../config.sh; then TOP=../../..;
  1150.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1151.       else
  1152. !         (echo "Can't find config.sh."; exit 1)
  1153.       fi
  1154.       . $TOP/config.sh
  1155.       ;;
  1156. --- 40,46 ----
  1157.       elif test -f ../../../config.sh; then TOP=../../..;
  1158.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1159.       else
  1160. !         echo "Can't find config.sh."; exit 1
  1161.       fi
  1162.       . $TOP/config.sh
  1163.       ;;
  1164. ***************
  1165. *** 57,63 ****
  1166.    * that running config.h.SH again will wipe out any changes you've made.
  1167.    * For a more permanent change edit config.sh and rerun config.h.SH.
  1168.    *
  1169. !  * \$Id: Config_h.U,v 3.0 1993/08/18 12:04:47 ram Exp $
  1170.    */
  1171.   
  1172.   /* Configuration time: $cf_time
  1173. --- 60,66 ----
  1174.    * that running config.h.SH again will wipe out any changes you've made.
  1175.    * For a more permanent change edit config.sh and rerun config.h.SH.
  1176.    *
  1177. !  * \$Id: Config_h.U,v 3.0.1.1 1993/08/19 06:42:20 ram Exp $
  1178.    */
  1179.   
  1180.   /* Configuration time: $cf_time
  1181.  
  1182. Index: pat/patmake.SH
  1183. Prereq: 3.0
  1184. *** pat/patmake.SH.old    Thu Aug 19 08:49:00 1993
  1185. --- pat/patmake.SH    Thu Aug 19 08:49:00 1993
  1186. ***************
  1187. *** 6,12 ****
  1188.       elif test -f ../../../config.sh; then TOP=../../..;
  1189.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1190.       else
  1191. !         (echo "Can't find config.sh."; exit 1)
  1192.       fi
  1193.       . $TOP/config.sh
  1194.       ;;
  1195. --- 6,12 ----
  1196.       elif test -f ../../../config.sh; then TOP=../../..;
  1197.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1198.       else
  1199. !         echo "Can't find config.sh."; exit 1
  1200.       fi
  1201.       . $TOP/config.sh
  1202.       ;;
  1203. ***************
  1204. *** 20,26 ****
  1205.       eval "exec perl -S \$0 \$*"
  1206.           if \$running_under_some_shell;
  1207.   
  1208. ! # $Id: patmake.SH,v 3.0 1993/08/18 12:10:45 ram Exp $
  1209.   #
  1210.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1211.   #  
  1212. --- 20,26 ----
  1213.       eval "exec perl -S \$0 \$*"
  1214.           if \$running_under_some_shell;
  1215.   
  1216. ! # $Id: patmake.SH,v 3.0.1.1 1993/08/19 06:42:38 ram Exp $
  1217.   #
  1218.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1219.   #  
  1220. ***************
  1221. *** 34,39 ****
  1222. --- 34,42 ----
  1223.   # Contribution by: Graham Stoney <greyham@research.canon.oz.au>
  1224.   #
  1225.   # $Log: patmake.SH,v $
  1226. + # Revision 3.0.1.1  1993/08/19  06:42:38  ram
  1227. + # patch1: leading config.sh searching was not aborting properly
  1228. + #
  1229.   # Revision 3.0  1993/08/18  12:10:45  ram
  1230.   # Baseline for dist 3.0 netwide release.
  1231.   #
  1232.  
  1233. Index: jmake/jmkmf.SH
  1234. Prereq: 3.0
  1235. *** jmake/jmkmf.SH.old    Thu Aug 19 08:48:31 1993
  1236. --- jmake/jmkmf.SH    Thu Aug 19 08:48:31 1993
  1237. ***************
  1238. *** 6,12 ****
  1239.       elif test -f ../../../config.sh; then TOP=../../..;
  1240.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1241.       else
  1242. !         (echo "Can't find config.sh."; exit 1)
  1243.       fi
  1244.       . $TOP/config.sh
  1245.       ;;
  1246. --- 6,12 ----
  1247.       elif test -f ../../../config.sh; then TOP=../../..;
  1248.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1249.       else
  1250. !         echo "Can't find config.sh."; exit 1
  1251.       fi
  1252.       . $TOP/config.sh
  1253.       ;;
  1254. ***************
  1255. *** 21,27 ****
  1256.   $spitshell >>jmkmf <<'!NO!SUBS!'
  1257.   # @(#) Generates a Makefile from a Jmakefile
  1258.   
  1259. ! # $Id: jmkmf.SH,v 3.0 1993/08/18 12:04:19 ram Exp $
  1260.   #
  1261.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1262.   #  
  1263. --- 21,27 ----
  1264.   $spitshell >>jmkmf <<'!NO!SUBS!'
  1265.   # @(#) Generates a Makefile from a Jmakefile
  1266.   
  1267. ! # $Id: jmkmf.SH,v 3.0.1.1 1993/08/19 06:42:14 ram Exp $
  1268.   #
  1269.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1270.   #  
  1271. ***************
  1272. *** 32,37 ****
  1273. --- 32,40 ----
  1274.   #  of the source tree for dist 3.0.
  1275.   #
  1276.   # $Log: jmkmf.SH,v $
  1277. + # Revision 3.0.1.1  1993/08/19  06:42:14  ram
  1278. + # patch1: leading config.sh searching was not aborting properly
  1279. + #
  1280.   # Revision 3.0  1993/08/18  12:04:19  ram
  1281.   # Baseline for dist 3.0 netwide release.
  1282.   #
  1283.  
  1284. Index: kit/kitsend.SH
  1285. Prereq: 3.0
  1286. *** kit/kitsend.SH.old    Thu Aug 19 08:48:33 1993
  1287. --- kit/kitsend.SH    Thu Aug 19 08:48:33 1993
  1288. ***************
  1289. *** 6,12 ****
  1290.       elif test -f ../../../config.sh; then TOP=../../..;
  1291.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1292.       else
  1293. !         (echo "Can't find config.sh."; exit 1)
  1294.       fi
  1295.       . $TOP/config.sh
  1296.       ;;
  1297. --- 6,12 ----
  1298.       elif test -f ../../../config.sh; then TOP=../../..;
  1299.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1300.       else
  1301. !         echo "Can't find config.sh."; exit 1
  1302.       fi
  1303.       . $TOP/config.sh
  1304.       ;;
  1305. ***************
  1306. *** 20,26 ****
  1307.       eval 'exec perl -S \$0 "\$@"'
  1308.           if \$running_under_some_shell;
  1309.   
  1310. ! # $Id: kitsend.SH,v 3.0 1993/08/18 12:04:25 ram Exp $
  1311.   #
  1312.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1313.   #  
  1314. --- 20,26 ----
  1315.       eval 'exec perl -S \$0 "\$@"'
  1316.           if \$running_under_some_shell;
  1317.   
  1318. ! # $Id: kitsend.SH,v 3.0.1.1 1993/08/19 06:42:15 ram Exp $
  1319.   #
  1320.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1321.   #  
  1322. ***************
  1323. *** 33,38 ****
  1324. --- 33,41 ----
  1325.   # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
  1326.   #
  1327.   # $Log: kitsend.SH,v $
  1328. + # Revision 3.0.1.1  1993/08/19  06:42:15  ram
  1329. + # patch1: leading config.sh searching was not aborting properly
  1330. + #
  1331.   # Revision 3.0  1993/08/18  12:04:25  ram
  1332.   # Baseline for dist 3.0 netwide release.
  1333.   #
  1334.  
  1335. Index: bin/manicheck.SH
  1336. Prereq: 3.0
  1337. *** bin/manicheck.SH.old    Thu Aug 19 08:48:21 1993
  1338. --- bin/manicheck.SH    Thu Aug 19 08:48:21 1993
  1339. ***************
  1340. *** 6,12 ****
  1341.       elif test -f ../../../config.sh; then TOP=../../..;
  1342.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1343.       else
  1344. !         (echo "Can't find config.sh."; exit 1)
  1345.       fi
  1346.       . $TOP/config.sh
  1347.       ;;
  1348. --- 6,12 ----
  1349.       elif test -f ../../../config.sh; then TOP=../../..;
  1350.       elif test -f ../../../../config.sh; then TOP=../../../..;
  1351.       else
  1352. !         echo "Can't find config.sh."; exit 1
  1353.       fi
  1354.       . $TOP/config.sh
  1355.       ;;
  1356. ***************
  1357. *** 19,25 ****
  1358.   $startsh
  1359.   !GROK!THIS!
  1360.   $spitshell >>manicheck <<'!NO!SUBS!'
  1361. ! # $Id: manicheck.SH,v 3.0 1993/08/18 12:04:02 ram Exp $
  1362.   #
  1363.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1364.   #  
  1365. --- 19,25 ----
  1366.   $startsh
  1367.   !GROK!THIS!
  1368.   $spitshell >>manicheck <<'!NO!SUBS!'
  1369. ! # $Id: manicheck.SH,v 3.0.1.1 1993/08/19 06:41:51 ram Exp $
  1370.   #
  1371.   #  Copyright (c) 1991-1993, Raphael Manfredi
  1372.   #  
  1373. ***************
  1374. *** 32,37 ****
  1375. --- 32,40 ----
  1376.   # Original Author: Harlan Stenn <harlan@mumps.pfcs.com>
  1377.   #
  1378.   # $Log: manicheck.SH,v $
  1379. + # Revision 3.0.1.1  1993/08/19  06:41:51  ram
  1380. + # patch1: leading config.sh searching was not aborting properly
  1381. + #
  1382.   # Revision 3.0  1993/08/18  12:04:02  ram
  1383.   # Baseline for dist 3.0 netwide release.
  1384.   #
  1385.  
  1386. *** End of Patch 1 ***
  1387.  
  1388. exit 0 # Just in case...
  1389.