home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume39 / dist-3.0 / patch05 < prev    next >
Encoding:
Text File  |  1993-08-25  |  3.4 KB  |  132 lines

  1. Newsgroups: comp.sources.misc
  2. From: Raphael Manfredi <ram@acri.fr>
  3. Subject: v39i051:  dist-3.0 - Configure script generator and related tools, Patch05
  4. Message-ID: <1993Aug25.235406.23729@sparky.sterling.com>
  5. X-Md4-Signature: 6049836d7493f5f0d586a3dd0b76ffda
  6. Sender: kent@sparky.sterling.com (Kent Landfield)
  7. Organization: Advanced Computer Research Institute, Lyon, France
  8. Date: Wed, 25 Aug 1993 23:54:06 GMT
  9. Approved: kent@sparky.sterling.com
  10.  
  11. Submitted-by: Raphael Manfredi <ram@acri.fr>
  12. Posting-number: Volume 39, Issue 51
  13. Archive-name: dist-3.0/patch05
  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 #5.]
  18.  
  19. System: dist version 3.0
  20. Patch #: 5
  21. Priority: CRITICAL
  22. Subject: fixed fatal typo in here document
  23. Date: Tue Aug 24 14:48:07 MET DST 1993
  24. From: Raphael Manfredi <ram@acri.fr>
  25.  
  26. Description:
  27.     Fixed fatal typo in here document in patnotify.
  28.  
  29. Repeat-By:
  30.  
  31.     perl -c pat/patnotify
  32.  
  33. Fix:    From rn, say "| patch -p -N -d DIR", where DIR is your dist source
  34.     directory.  Outside of rn, say "cd DIR; patch -p -N <thisarticle".
  35.     If you don't have the patch program, apply the following by hand,
  36.     or get patch (version 2.0, latest patchlevel).
  37.  
  38.     After patching:
  39.         Configure -ders
  40.         make
  41.         make install
  42.         make install.man
  43.  
  44.     If patch indicates that patchlevel is the wrong version, you may need
  45.     to apply one or more previous patches, or the patch may already
  46.     have been applied.  See the patchlevel.h file to find out what has or
  47.     has not been applied.  In any event, don't continue with the patch.
  48.  
  49.     If you are missing previous patches they can be obtained from me:
  50.  
  51.         Raphael Manfredi <ram@acri.fr>
  52.  
  53.     If you send a mail message of the following form it will greatly speed
  54.     processing:
  55.  
  56.         Subject: Command
  57.         @SH mailpatch PATH dist 3.0 LIST
  58.                ^ note the c
  59.  
  60.     where PATH is a return path FROM ME TO YOU either in Internet notation,
  61.     or in bang notation from some well-known host, and LIST is the number
  62.     of one or more patches you need, separated by spaces, commas, and/or
  63.     hyphens.  Saying 35- says everything from 35 to the end.
  64.  
  65.     To get some more detailed instructions, send me the following mail:
  66.  
  67.         Subject: Command
  68.         @SH mailhelp PATH
  69.  
  70.  
  71. Index: patchlevel.h
  72. Prereq: 4
  73. 4c4
  74. < #define PATCHLEVEL 4
  75. ---
  76. > #define PATCHLEVEL 5
  77.  
  78. Index: pat/patnotify.SH
  79. Prereq: 3.0.1.1
  80. *** pat/patnotify.SH.old    Tue Aug 24 14:48:05 1993
  81. --- pat/patnotify.SH    Tue Aug 24 14:48:05 1993
  82. ***************
  83. *** 20,26 ****
  84.       eval "exec perl -S \$0 \$*"
  85.           if \$running_under_some_shell;
  86.   
  87. ! # $Id: patnotify.SH,v 3.0.1.1 1993/08/24 12:19:11 ram Exp $
  88.   #
  89.   #  Copyright (c) 1991-1993, Raphael Manfredi
  90.   #  
  91. --- 20,26 ----
  92.       eval "exec perl -S \$0 \$*"
  93.           if \$running_under_some_shell;
  94.   
  95. ! # $Id: patnotify.SH,v 3.0.1.2 1993/08/24 12:48:03 ram Exp $
  96.   #
  97.   #  Copyright (c) 1991-1993, Raphael Manfredi
  98.   #  
  99. ***************
  100. *** 31,36 ****
  101. --- 31,39 ----
  102.   #  of the source tree for dist 3.0.
  103.   #
  104.   # $Log: patnotify.SH,v $
  105. + # Revision 3.0.1.2  1993/08/24  12:48:03  ram
  106. + # patch5: fixed fatal typo in here document
  107. + #
  108.   # Revision 3.0.1.1  1993/08/24  12:19:11  ram
  109.   # patch3: created
  110.   #
  111. ***************
  112. *** 132,138 ****
  113.     -h : print this message and exit
  114.     -u : add all to-be-notified users
  115.     -V : print version number and exit
  116. ! EOM
  117.       exit 1;
  118.   }
  119.   
  120. --- 135,141 ----
  121.     -h : print this message and exit
  122.     -u : add all to-be-notified users
  123.     -V : print version number and exit
  124. ! EOH
  125.       exit 1;
  126.   }
  127.   
  128.  
  129. *** End of Patch 5 ***
  130.  
  131. exit 0 # Just in case...
  132.