home *** CD-ROM | disk | FTP | other *** search
/ NeXTIME / NEXTIME.iso / NextLibrary / Receipts / NEXTIME.pkg / NEXTIME.post_delete < prev    next >
Text File  |  1994-06-06  |  391b  |  13 lines

  1. #!/bin/csh -f
  2. /usr/bin/bm -s 3.2 /usr/lib/NextStep/software_version
  3. if ( $status == 0 ) then
  4.     set shlib_file = /usr/shlib/libInterceptor_s.A.shlib
  5.     set reloc_file = /usr/lib/NextStep/GraphicsPackages/Interceptor_reloc
  6.     echo -n "Removing ${shlib_file:t} ... "
  7.     /bin/rm -f ${shlib_file}
  8.     echo -n "${reloc_file:t} ... "
  9.     /bin/rm -f ${reloc_file}
  10.     echo "done."
  11. endif
  12. exit 0
  13.