home *** CD-ROM | disk | FTP | other *** search
/ IBM CD Showcase / OS2_CD_ROM.iso / smce0001 / builder / sinstall.cmd < prev    next >
Encoding:
Text File  |  1994-01-13  |  373 b   |  16 lines

  1. /* CMD file to check for presence of MMPM/2 and */
  2. /* then to invoke product installation */
  3.  
  4.  
  5.   '@utinst2'          /* Check for MMPM/2 */
  6.  
  7.   If rc <> 0 Then Do
  8.     Say "Please install MMPM/2 before attempting to"
  9.     Say "install this product.  Thank you."
  10.     Exit 8
  11.     End;
  12.  
  13.   '@utinst'           /* Call the product installation procedure */
  14.  
  15.  Exit 0
  16.