home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTIME
/
NEXTIME.iso
/
NextLibrary
/
Receipts
/
NEXTIME.pkg
/
NEXTIME.post_delete
< prev
next >
Wrap
Text File
|
1994-06-06
|
391b
|
13 lines
#!/bin/csh -f
/usr/bin/bm -s 3.2 /usr/lib/NextStep/software_version
if ( $status == 0 ) then
set shlib_file = /usr/shlib/libInterceptor_s.A.shlib
set reloc_file = /usr/lib/NextStep/GraphicsPackages/Interceptor_reloc
echo -n "Removing ${shlib_file:t} ... "
/bin/rm -f ${shlib_file}
echo -n "${reloc_file:t} ... "
/bin/rm -f ${reloc_file}
echo "done."
endif
exit 0