home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / NeXT-install < prev    next >
Text File  |  1991-04-03  |  348b  |  16 lines

  1. #!/bin/sh
  2.  
  3. # Configure a release from FSF for use on the NeXT.
  4.  
  5. # Replace "__" with "_" in optabs.c:
  6. mv optabs.c optabs.c.orig
  7. sed s/__/_/ < optabs.c.orig > optabs.c
  8.  
  9. # Move in NeXT files:
  10. mv config/tm-next.h config/tm-next.h.orig
  11. cp -p config/tm-next.h-NeXT config/tm-next.h
  12.  
  13. # Apply NeXT patches:
  14. patch -N < NeXT-diffs
  15. patch -N < NeXT-OBJC-diffs
  16.