home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh -f
- /usr/bin/bm -s 3.2 /usr/lib/NextStep/software_version
- if ( $status == 0 ) then
- set in_shlib = ${1}/libInterceptor_s.A.shlib
- set in_reloc = ${1}/Interceptor_reloc
- set arch_type = `/usr/bin/arch`
- set out_shlib = /usr/shlib/libInterceptor_s.A.shlib
- set out_reloc = /usr/lib/NextStep/GraphicsPackages/Interceptor_reloc
- echo -n "Copying ${in_shlib:t} ... "
- /bin/lipo ${in_shlib} -thin ${arch_type} -output ${out_shlib}
- echo -n "${in_reloc:t} ... "
- /bin/lipo ${in_reloc} -thin ${arch_type} -output ${out_reloc}
- echo "done."
- endif
- exit 0
-