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

  1. #!/bin/csh -f
  2. /usr/bin/bm -s 3.2 /usr/lib/NextStep/software_version
  3. if ( $status == 0 ) then
  4.     set in_shlib  = ${1}/libInterceptor_s.A.shlib
  5.     set in_reloc  = ${1}/Interceptor_reloc
  6.     set arch_type = `/usr/bin/arch`
  7.     set out_shlib = /usr/shlib/libInterceptor_s.A.shlib
  8.     set out_reloc = /usr/lib/NextStep/GraphicsPackages/Interceptor_reloc
  9.     echo -n "Copying ${in_shlib:t} ... "
  10.     /bin/lipo ${in_shlib} -thin ${arch_type} -output ${out_shlib}
  11.     echo -n "${in_reloc:t} ... "
  12.     /bin/lipo ${in_reloc} -thin ${arch_type} -output ${out_reloc}
  13.     echo "done."
  14. endif
  15. exit 0
  16.